Last active
August 7, 2024 20:27
-
-
Save arifbalik/69a40e218cc5c0b5558bda31f0866576 to your computer and use it in GitHub Desktop.
PR Size Watcher Action with actions/github-script@v7
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: PR Watcher | |
on: | |
pull_request: | |
types: [opened, synchronize] | |
jobs: | |
check-pr-size: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
pull-requests: write | |
steps: | |
- uses: actions/github-script@v7 | |
with: | |
script: | | |
const MAX_PR_SIZE = parseInt(process.env.MAX_PR_SIZE); | |
const pr = context.payload.pull_request; | |
if (pr.additions > MAX_PR_SIZE) { | |
github.rest.issues.createComment({ | |
issue_number: pr.number, | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
body: `:x: PR size is too large. Please keep PR size under ${MAX_PR_SIZE} additions.` | |
}); | |
core.setFailed(`PR size is too large. Please keep PR size under ${MAX_PR_SIZE} additions.`); | |
} else { core.notice(`PR size is within limits.`); } | |
env: | |
MAX_PR_SIZE: 200 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
With file extension exclusion