Difference between revisions of "GitHub Actions: on:"

From wikieduonline
Jump to navigation Jump to search
Line 6: Line 6:
 
  on: [[workflow_call]]    # https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#onworkflow_call
 
  on: [[workflow_call]]    # https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#onworkflow_call
  
 +
on: ['deployment']
  
 
  [[on:]]
 
  [[on:]]

Revision as of 10:35, 16 February 2024

https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#on

on: push
on: [push,fork]
on: workflow_dispatch # for manual trigger [1]
on: workflow_call     # https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#onworkflow_call
on: ['deployment']
on:
  push:
    branches:
      - main
      - develop
on:
  schedule:
    # * is a special character in YAML so you have to quote this string
    - cron:  '30 5,17 * * *'

Related

See also

  • https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#workflow_dispatch
  • Advertising: