GitHub/Workflow/Events: Difference between revisions
Jump to navigation
Jump to search
(Created page with "== Events == https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows == Events that Must Be on Default Branch == * branch_protection_rule * check_run * check_suite * delete * discussion * discussion_comment * fork * gollum * issue_comment * issues * label * milestone * page_build * project * project_card * project_column * public * registry_package * repository_dispatch * schedule * status * watch * workflow_dispatch * workflow_run == Events...") |
No edit summary |
||
Line 44: | Line 44: | ||
* release | * release | ||
* workflow_call | * workflow_call | ||
== workflow dispatch == | |||
https://docs.github.com/en/actions/writing-workflows/choosing-when-your-workflow-runs/events-that-trigger-workflows#workflow_dispatch | |||
Limits: | |||
* The maximum number of top-level properties for inputs is 10. | |||
* The maximum payload for inputs is 65,535 characters. |
Latest revision as of 05:20, 28 May 2025
Events
https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows
Events that Must Be on Default Branch
- branch_protection_rule
- check_run
- check_suite
- delete
- discussion
- discussion_comment
- fork
- gollum
- issue_comment
- issues
- label
- milestone
- page_build
- project
- project_card
- project_column
- public
- registry_package
- repository_dispatch
- schedule
- status
- watch
- workflow_dispatch
- workflow_run
Events that Are Free Game
- create
- deployment
- deployment_status
- merge_group
- pull_request ******** interesting ******
- pull_request_comment
- pull_request_review
- pull_request_review_comment
- pull_request_target
- push
- release
- workflow_call
workflow dispatch
Limits:
- The maximum number of top-level properties for inputs is 10.
- The maximum payload for inputs is 65,535 characters.