Skip to content

Commit

Permalink
[github-workflow] Add registry_package eventObject (#1025)
Browse files Browse the repository at this point in the history
Signed-off-by: Matthew Peveler <[email protected]>
  • Loading branch information
MasterOdin authored May 1, 2020
1 parent 5aa6631 commit ea700fe
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions src/schemas/json/github-workflow.json
Original file line number Diff line number Diff line change
Expand Up @@ -717,6 +717,27 @@
},
"additionalProperties": false
},
"registry_package": {
"$comment": "https://help.github.com/en/actions/reference/events-that-trigger-workflows#registry-package-event-registry_package",
"$ref": "#/definitions/eventObject",
"description": "Runs your workflow anytime a package is published or updated. For more information, see https://help.github.com/en/github/managing-packages-with-github-packages.",
"properties": {
"types": {
"$ref": "#/definitions/types",
"items": {
"type": "string",
"enum": [
"published",
"updated"
]
},
"default": [
"published",
"updated"
]
}
}
},
"release": {
"$comment": "https://help.github.com/en/github/automating-your-workflow-with-github-actions/events-that-trigger-workflows#release-event-release",
"$ref": "#/definitions/eventObject",
Expand Down

0 comments on commit ea700fe

Please sign in to comment.