Skip to content

Commit

Permalink
Merge pull request #102 from nowsprinting/chore/conflibot
Browse files Browse the repository at this point in the history
Add conflibot workflow
  • Loading branch information
asurato authored Nov 8, 2024
2 parents c675058 + b265090 commit 4f1f4ff
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/conflibot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# Copyright (c) 2023-2024 DeNA Co., Ltd.
# This software is released under the MIT License.

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 4f1f4ff

Please sign in to comment.