If you're using GITHUB_TOKEN
, you'll only be able to use this action for PRs opened within the same repository.
If you're planning to support PRs opened from forks, you can enable the option to Send write tokens to workflows from pull requests. However, this is a high risk option, as described in the docs.
See this comment for more information: xenserver/xenadmin#2875 (comment)
You can also use this workaround, which would avoid using such sensitive permissions. See #1 for more.
This action updates the labels of a PR after a review has been added.
It currently supports four labels:
- One Approval label
- Two Approvals label
- Changes Requested label
- Updated PR Label
These labels have to exist in the repository already.
You will simply need to specify their names in the .yml
configuration.
Required Name of the label to show when the PR has one approval. Defaults to 1 approval
.
Required Name of the label to show when the PR has two approvals. Defaults to 2 approvals
.
Required Name of the label to show when the PR needs changes. Defaults to needs updating
.
Required Name of the label to show when the PR has been updated (new commits). Defaults to updated
.
The token needs to be added to the yml description in order for the action to call GitHub's API.
You can replace pull_request
with pull_request_target
if you need to.
name: Update PR Labels
on:
pull_request_review:
types: [submitted]
pull_request:
types: [synchronize]
jobs:
update-pr-labels:
runs-on: ubuntu-latest
name: Update PR Labels
steps:
- name: Update Labels
uses: danilo-delbusso/pr-review-labeller@v1.2.3
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
name: Update PR Labels
on:
pull_request_review:
types: [submitted]
pull_request:
types: [synchronize]
jobs:
update-pr-labels:
runs-on: ubuntu-latest
name: Update PR Labels
steps:
- name: Update Labels
uses: danilo-delbusso/pr-review-labeller@v1.2.3
with:
one-approval-label-name: "1 approval"
two-approvals-label-name: "2 approvals"
changes-requested-label-name: "needs updating"
updated-pr-label-name: "updated"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}