Skip to content

Commit

Permalink
ci: Create merge-conflict-autolabel.yml (#235)
Browse files Browse the repository at this point in the history
### What
- ci: Create merge-conflict-autolabel.yml
  • Loading branch information
teolemon authored Aug 21, 2024
1 parent 7d3a012 commit b059a72
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/merge-conflict-autolabel.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: '💥 Auto-Label Merge Conflicts on PRs'
on:
push:
branches:
- main

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
triage:
runs-on: ubuntu-latest
steps:
- uses: mschilde/auto-label-merge-conflicts@master
with:
CONFLICT_LABEL_NAME: "💥 Merge Conflicts"
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
MAX_RETRIES: 5
WAIT_MS: 5000

0 comments on commit b059a72

Please sign in to comment.