Skip to content

Nightly

Nightly #719

Workflow file for this run

name: Nightly
on:
schedule:
- cron: "0 06 * * *"
workflow_dispatch:
inputs:
job:
description: "Select the job to run in contract.yaml"
required: true
default: "all"
type: choice
options:
- all
- bats-tests
- vscode-ui-tests
jobs:
agent:
uses: ./.github/workflows/agent.yaml
build:
uses: ./.github/workflows/build.yaml
package:
needs: build
uses: ./.github/workflows/package.yaml
contract-deps:
secrets: inherit
uses: ./.github/workflows/contract-deps.yaml
nightly:
needs:
- build
- contract-deps
- package
secrets: inherit
uses: ./.github/workflows/contract.yaml

Check failure on line 33 in .github/workflows/nightly.yaml

View workflow run for this annotation

GitHub Actions / Nightly

Invalid workflow file

The workflow is not valid. In .github/workflows/nightly.yaml (Line: 33, Col: 11): Error from called workflow posit-dev/publisher/.github/workflows/contract.yaml@16d2211b383b8a99e55f51d3e3c96858ad046ce0 (Line: 13, Col: 9): Unexpected value 'runs-on' In .github/workflows/nightly.yaml (Line: 33, Col: 11): Error from called workflow posit-dev/publisher/.github/workflows/contract.yaml@16d2211b383b8a99e55f51d3e3c96858ad046ce0 (Line: 11, Col: 5): Required property is missing: runs-on
with:
job: ${{ github.event.inputs.job || 'all' }}
cleanup:
needs: nightly
secrets: inherit
uses: ./.github/workflows/cleanup.yaml
# Extensions
vscode:
uses: ./.github/workflows/vscode.yaml