Skip to content

Commit a9eafc0

Browse files
add nitpicker for rel branch PR's
1 parent f35be38 commit a9eafc0

File tree

2 files changed

+24
-0
lines changed

2 files changed

+24
-0
lines changed

.github/workflows/nitpicker.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
- markdown: |
2+
Have you checked this code into `main`? If not, close this PR and do that first.
3+
blocking: true

.github/workflows/pr-into-rel.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Comment on PRs merged into release branches
2+
3+
on:
4+
pull_request:
5+
types:
6+
- opened
7+
- reopened
8+
branches:
9+
- 'rel'
10+
11+
permissions:
12+
pull-requests: write
13+
14+
jobs:
15+
comment:
16+
runs-on: ubuntu-latest
17+
steps:
18+
- uses: ethanis/nitpicker@v1
19+
with:
20+
nitpicks: '.github/workflows/nitpicker.yml'
21+
token: '${{ secrets.GITHUB_TOKEN }}'

0 commit comments

Comments
 (0)