Skip to content

fix: remove "schedule" and "workflow_run" since they need more info #4

fix: remove "schedule" and "workflow_run" since they need more info

fix: remove "schedule" and "workflow_run" since they need more info #4

name: workflow_run-requested

Check failure on line 1 in .github/workflows/workflow_run-requested.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/workflow_run-requested.yaml

Invalid workflow file

`on.workflow_run` does not reference any workflows. See https://docs.github.com/actions/learn-github-actions/events-that-trigger-workflows#workflow_run for more information
on:
workflow_run:
types: [requested]
jobs:
foo:
name: workflow_run-requested
runs-on: ubuntu-latest
steps:
- name: Event context info
run: |
cat <<EOF
github: ${{github}}
env: ${{env}}
vars: ${{vars}}
job: ${{job}}
steps: ${{steps}}
runner: ${{runner}}
secrets: ${{secrets}}
strategy: ${{strategy}}
matrix: ${{matrix}}
needs: ${{needs}}
inputs: ${{inputs}}