Privileged Requester
This GitHub Action will automatically approve pull requests based off of requester criteria defined in the target repository.
Workflow Configuration
The workflow should be configured like:
Where
vX.X.Xis the latest release version found on the releases page
jobs:
check:
runs-on: ubuntu-latest
steps:
# checkout the repository
- uses: actions/checkout@v3
# run privileged-requester
- uses: github/privileged-requester@vX.X.XSee the example in the workflow folder
Requester Configuration
In the target repo, the privileged requester functionality should be configured like so:
---
requesters:
dependabot[bot]:
labels:
- dependencies
- github_actionsSee the example in the config folder.
The location of this file in the target repo should be the path used in the workflow configuration path
Reviewer
This Action runs, by default, with the built-in GITHUB_TOKEN and so approves the PRs as the github-actions[bot] user.
However, you can configure the Action to run with a different repo scoped token - a bot user of your own - by defining the Workflow configuration option robotUserToken pointing to the repo secret for that token.
Configuration
Here are the configuration options for this Action:
Inputs π₯
| Input | Required? | Default | Description |
|---|---|---|---|
| myToken | yes | ${{ github.token }} | The GitHub token used to create an authenticated client - Provided for you by default! |
| robotUserToken | no | - | An alternative robot user PAT to be used instead of the built-in Actions token |
| path | yes | config/privileged-requester.yaml | Path where the privileged requester configuration can be found |
| prCreator | yes | ${{ github.event.pull_request.user.login }} | The creator of the PR for this pull request event |
| prNumber | yes | ${{ github.event.pull_request.number }} | The number of the PR for this pull request event |
| checkCommits | yes | "true" | An option to check that every commit in the PR is made from the privileged requester |
| checkDiff | yes | "true" | An option to check that the PR diff only has a removal diff, with no additions |
| checkLabels | yes | "true" | An option to check that the labels on the PR match those defined in the privileged requester config |
Outputs π€
| Output | Description |
|---|---|
| approved | The string "true" if the privileged-requester approved the pull request |