Skip to content

Commit f5d2ab0

Browse files
Automatically label PRs to sync by default
Signed-off-by: Matty Widdop <18513864+MattyTheHacker@users.noreply.github.com>
1 parent b04ac77 commit f5d2ab0

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: "Automatically mark PRs to sync"
2+
3+
on:
4+
pull_request:
5+
6+
jobs:
7+
labeler:
8+
permissions:
9+
pull-requests: write
10+
11+
runs-on: ubuntu-latest
12+
steps:
13+
- run: gh pr edit $PR --add-label sync
14+
env:
15+
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
16+
PR: ${{ github.event.number }}

0 commit comments

Comments
 (0)