You're viewing an older version of this GitHub Action. Do you want to see the latest version instead?
GitHub Action
Label approved pull requests
v1.0.3
This GitHub Action applies a label of your choice to pull requests that reach a specified number of approvals. For teams using Pull Reminders, this action can be used to exclude approved pull requests from reminders.
This Action subscribes to Pull request review events which fire whenever pull requests are approved. The action requires two environment variables – a label name and the number of required approvals.
workflow "Label approved pull requests" {
on = "pull_request_review"
resolves = ["Label when approved"]
}
action "Label when approved" {
uses = "pullreminders/label-when-approved-action@master"
secrets = ["GITHUB_TOKEN"]
env = {
LABEL_NAME = "approved"
APPROVALS = "2"
}
}
The Dockerfile and associated scripts and documentation in this project are released under the MIT License.