-
Notifications
You must be signed in to change notification settings - Fork 1
40 lines (35 loc) · 1.04 KB
/
block_merge.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: Block Merge on "hold" Tag
on:
pull_request:
types:
- synchronize
- labeled
- unlabeled
jobs:
block_merge:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Check PR for "hold" tag
id: check_tag
env:
GH_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
run: |
if [[ $(git diff --name-only HEAD^ HEAD) =~ .github/workflows/block_merge.yml ]]; then
echo "has_hold_tag=false" >> $GITHUB_ENV
else
pr_tags=$(gh pr view ${{ github.event.pull_request.number }} --json labels --jq '.labels[].name')
if [[ $pr_tags =~ hold ]]; then
echo "has_hold_tag=true" >> $GITHUB_ENV
else
echo "has_hold_tag=false" >> $GITHUB_ENV
fi
fi
- name: Block Merge
if: env.has_hold_tag == 'true'
run: |
echo "This pull request has a 'hold' tag. Merging is blocked."
exit 1