Skip to content

Daily Build

Daily Build #18

Workflow file for this run

name: Daily Build
on:
# run daily at 8:30am
schedule:
- cron: '30 8 * * *'
# allow manual runs
workflow_dispatch:
permissions:
contents: read
jobs:
build-daily:
# don't run cron from forks of the main repository or from other branches
if: github.repository == 'qualcomm-linux/qcom-deb-images' && github.ref == 'refs/heads/main'
uses: ./.github/workflows/debos.yml
test-daily:

Check failure on line 19 in .github/workflows/build-daily.yml

View workflow run for this annotation

GitHub Actions / Daily Build

Invalid workflow file

The workflow is not valid. .github/workflows/build-daily.yml (Line: 19, Col: 3): Error calling workflow 'qualcomm-linux/qcom-deb-images/.github/workflows/test.yml@c14224095cd04fbc4e279071d7a82381773b4b9b'. The nested job 'publish-test-results' is requesting 'checks: write, pull-requests: write', but is only allowed 'checks: none, pull-requests: none'.
# don't run cron from forks of the main repository or from other branches
if: github.repository == 'qualcomm-linux/qcom-deb-images' && github.ref == 'refs/heads/main'
uses: ./.github/workflows/test.yml
needs: build-daily
secrets: inherit
with:
url: ${{ needs.build-daily.outputs.artifacts_url }}