Skip to content

Commit e460351

Browse files
authored
Automatically label PRs based on *closing* issues (#7547)
* port label sync from pymc-marketing * use published action * add likely labels
1 parent 56a1d56 commit e460351

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/pr-auto-label.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: "Pull Request Labeler"
2+
on:
3+
- pull_request_target
4+
5+
jobs:
6+
sync:
7+
permissions:
8+
contents: read
9+
pull-requests: write
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Checkout repository
13+
uses: actions/checkout@v2
14+
- name: Sync labels with closing issues
15+
uses: wd60622/[email protected]
16+
with:
17+
exclude: "help wanted,needs info"
18+
env:
19+
GH_TOKEN: ${{ github.token }}

0 commit comments

Comments
 (0)