Add conflict bot #1
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: PR Conflict Checker | |
on: | |
pull_request: | |
types: [opened, synchronize] | |
jobs: | |
check_pr_conflicts: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v2 | |
- name: Run PR Conflict Checker | |
uses: ConflictBot/ConflictBot@v1 | |
with: | |
github-token: ${{ secrets.CONFLICT_BOT_ACCESS_TOKEN }} | |
main-branch: main | |
quiet: true |