Merge pull request #1971 from mythi/PR-2025-002 #335
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | |
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: | |
permissions: | |
contents: read | |
id-token: write | |
needs: | |
- e2e | |
- build | |
uses: "./.github/workflows/lib-publish.yaml" | |
secrets: inherit |