Skip to content

Workflow file for this run

name: runtestsFUSE

Check failure on line 1 in .github/workflows/runtest_FUSE.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/runtest_FUSE.yml

Invalid workflow file

Invalid `steps` value - steps should be list of `uses` or `run` items
on:
workflow_dispatch:
workflow_run:
workflows: [run_tests] # Name of GitHub workflow to trigger in target repository
types:
- completed
jobs:
triggerruntest:
if: github.event.workflow_run.conclusion == 'success' # Run only when workflow run has succeeded, i.e. all jobs have succeeded
runs-on: ubuntu-latest
steps:
uses: actions/github-script@v6
with:
github-token: ${{ secrets.PAT }} # Fine-grained GitHub PAT that was saved as repository secret
script: |
await github.rest.actions.createworkflowDispatch({
owner: 'ProjectTorreyPines',
repo: 'FUSE.jl',
workflow_id: 'run_tests.yml',
ref: 'master'
})