https://github.com/kompiro/tag-by-merged-pull-request-action
GitHub Action that create a tag based on merged pull request information
https://github.com/kompiro/tag-by-merged-pull-request-action
actions github
Last synced: 2 months ago
JSON representation
GitHub Action that create a tag based on merged pull request information
- Host: GitHub
- URL: https://github.com/kompiro/tag-by-merged-pull-request-action
- Owner: kompiro
- License: mit
- Created: 2019-02-19T00:55:20.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-02-19T07:37:29.000Z (over 6 years ago)
- Last Synced: 2025-02-16T09:15:22.692Z (4 months ago)
- Topics: actions, github
- Language: Shell
- Homepage:
- Size: 4.88 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Tag by merged pull request
If you'd like to know when the pull request merged correctly because GitHub doesn't record the merged infomation in your repository. This action create tag when pull request merged event.
## Usage
This Action subscribes to [Pull request events](https://developer.github.com/v3/activity/events/types/#pullrequestevent) which fire whenever users are merged pull requests.
```workflow
workflow "Tag by merged pull request" {
on = "pull_request"
resolves = ["Tag_on_pull_request"]
}action "Tag_on_pull_request" {
uses = "kompiro/tag-by-merged-pull-request-action@master"
secrets = [
"GITHUB_TOKEN"
]
}
```## Demo
TBD
## License
The Dockerfile and associated scripts and documentation in this project are released under the [MIT License](LICENSE).