Skip to content

Commit

Permalink
Merge pull request #332 from nowsprinting/chore/conflibot
Browse files Browse the repository at this point in the history
Add conflibot workflow
  • Loading branch information
nowsprinting authored Nov 30, 2024
2 parents 6ab31ea + 114cc7f commit d9888a6
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/conflibot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Check pull requests for conflicts

on:
pull_request_target:
types: [ opened, synchronize, reopened ]

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

permissions: {}

defaults:
run:
shell: bash

jobs:
conflibot:
runs-on: ubuntu-latest
timeout-minutes: 5
permissions:
contents: read
pull-requests: read
checks: write

steps:
- uses: actions/checkout@v4
- uses: wktk/conflibot@v1
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
exclude: ""

0 comments on commit d9888a6

Please sign in to comment.