mirror of
https://github.com/intel/intel-device-plugins-for-kubernetes.git
synced 2025-06-03 03:59:37 +00:00

Also add scorecard badge and fix CI/Devel badge Signed-off-by: Tuomas Katila <tuomas.katila@intel.com>
56 lines
986 B
YAML
56 lines
986 B
YAML
name: Devel
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
permissions:
|
|
contents: read
|
|
pull-requests: read
|
|
|
|
jobs:
|
|
trivy:
|
|
permissions:
|
|
actions: read
|
|
contents: read
|
|
security-events: write
|
|
uses: "./.github/workflows/lib-trivy.yaml"
|
|
with:
|
|
upload-to-github-security-tab: true
|
|
|
|
validate:
|
|
uses: "./.github/workflows/lib-validate.yaml"
|
|
|
|
codeql:
|
|
permissions:
|
|
actions: read
|
|
contents: read
|
|
security-events: write
|
|
uses: "./.github/workflows/lib-codeql.yaml"
|
|
|
|
scorecard:
|
|
permissions:
|
|
contents: read
|
|
id-token: write
|
|
security-events: write
|
|
uses: "./.github/workflows/lib-scorecard.yaml"
|
|
|
|
build:
|
|
needs:
|
|
- validate
|
|
- trivy
|
|
uses: "./.github/workflows/lib-build.yaml"
|
|
|
|
e2e:
|
|
needs:
|
|
- build
|
|
uses: "./.github/workflows/lib-e2e.yaml"
|
|
|
|
# devel image push
|
|
publish:
|
|
needs:
|
|
- e2e
|
|
- build
|
|
uses: "./.github/workflows/lib-publish.yaml"
|
|
secrets: inherit
|