-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #102 from nowsprinting/chore/conflibot
Add conflibot workflow
- Loading branch information
Showing
1 changed file
with
34 additions
and
0 deletions.
There are no files selected for viewing
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
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: "" |