dispatch.yaml 406 B

123456789101112131415161718
  1. name: Dispatch
  2. run-name: Dispatched Repository Actions - ${{ inputs.job }} ⌛️
  3. on:
  4. workflow_dispatch:
  5. inputs:
  6. job:
  7. description: Dispatch job to run
  8. required: true
  9. type: choice
  10. options:
  11. - build
  12. permissions:
  13. contents: write
  14. jobs:
  15. check-and-build:
  16. if: inputs.job == 'build'
  17. uses: ./.github/workflows/build-project.yaml
  18. secrets: inherit