Add workflows for rebase and project automation

This commit is contained in:
Fernando Fernández
2021-03-09 21:13:27 +01:00
parent 0b774eac12
commit 55700e0d1c
4 changed files with 117 additions and 1 deletions

17
.github/workflows/merge-conflicts.yml vendored Normal file
View File

@@ -0,0 +1,17 @@
name: 'Merge Conflicts'
on:
push:
branches:
- master
pull_request_target:
types:
- synchronize
jobs:
triage:
runs-on: ubuntu-latest
steps:
- uses: eps1lon/actions-label-merge-conflict@v2.0.0
with:
dirtyLabel: 'merge conflict'
repoToken: ${{ secrets.GH_TOKEN }}