Skip to content

Build (daily)

Build (daily) #39

Workflow file for this run

name: Build (daily)
on:
schedule:
# daily at 3:24 UTC
- cron: "24 3 * * *"
workflow_dispatch:
jobs:
common:
uses: ./.github/workflows/build-common.yml

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

View workflow run for this annotation

GitHub Actions / Build (daily)

Invalid workflow file

The workflow is not valid. In .github/workflows/build-daily.yml (Line: 11, Col: 11): Error from called workflow trask/opentelemetry-java-instrumentation/.github/workflows/build-common.yml@7e8450b96ce8ff3b27327211e773cd9b6ff7828f (Line: 265, Col: 14): Unexpected symbol: '"'. Located at position 28 within expression: inputs.max-test-retries && " -PmaxTestRetries=${inputs.max-test-retries}" || ''
with:
max-test-retries: 0
test-latest-deps:
uses: ./.github/workflows/reusable-test-latest-deps.yml
with:
max-test-retries: 0
test-indy:
uses: ./.github/workflows/reusable-test-indy.yml
with:
max-test-retries: 0
muzzle:
uses: ./.github/workflows/reusable-muzzle.yml
shell-script-check:
uses: ./.github/workflows/reusable-shell-script-check.yml
markdown-link-check:
uses: ./.github/workflows/reusable-markdown-link-check.yml
markdown-lint-check:
uses: ./.github/workflows/reusable-markdown-lint-check.yml
misspell-check:
uses: ./.github/workflows/reusable-misspell-check.yml
workflow-notification:
needs:
- common
- test-latest-deps
- muzzle
- markdown-link-check
- misspell-check
if: always()
uses: ./.github/workflows/reusable-workflow-notification.yml
with:
success: >-
${{
needs.common.result == 'success' &&
needs.test-latest-deps.result == 'success' &&
needs.muzzle.result == 'success' &&
needs.markdown-link-check.result == 'success' &&
needs.misspell-check.result == 'success'
}}