Merge pull request #188 from lool/6.18-rc2 #1
This file contains hidden or 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: Build on push to branch | |
| on: | |
| push: | |
| branches: [main] | |
| # implicitely set all other permissions to none | |
| permissions: | |
| checks: write # lava-test.yml | |
| contents: read # debos.yml lava-schema-check.yml lava-test.yml | |
| packages: read # lava-test.yml | |
| pull-requests: write # lava-test.yml | |
| jobs: | |
| build-daily: | |
| uses: ./.github/workflows/debos.yml | |
| schema-check: | |
| uses: ./.github/workflows/lava-schema-check.yml | |
| test: | |
| uses: ./.github/workflows/lava-test.yml | |
| needs: [build-daily, schema-check] | |
| secrets: inherit | |
| with: | |
| url: ${{ needs.build-daily.outputs.artifacts_url }} |