label-when-approved-action
label-when-approved-action copied to clipboard
GitHub Action that labels approved pull requests
We want the ability to change the required number of reviews based on some existing labels. Our usecase is like this: We require at least 2 reviewers on each PR,...
I have an idea for further improving this action. I've been searching for an workflow that automatically labels on approval and this fits the bill nicely. Frustratingly however the labeller...
Does this not work with pull requests from forks? I'm getting the following error: ``` { "message": "Resource not accessible by integration", "documentation_url": "https://developer.github.com/v3/issues/labels/#add-labels-to-an-issue" } { "message": "Resource not accessible...
On our project, when an author creates a PR, they choose how many people to review their PR. It's usually 2 people, but sometimes 1, sometimes up to 6. Rather...
Automate pull request
name: Label when approved runs-on: ubuntu-latest steps: - name: Label when approved uses: pullreminders/label-when-approved-action@master env: APPROVALS: "2" GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} ADD_LABEL: "approved" REMOVE_LABEL: "awaiting%20review"
Same issue as this one. https://github.com/abinoda/label-when-approved-action/issues/63 Oddly enough, I was able to get the value without any problems when I verified jq in another workflow. However, I get a jq...