Skip to content

Merge pull request #117 from PHPCSStandards/feature/ghactions-add-php… #24

Merge pull request #117 from PHPCSStandards/feature/ghactions-add-php…

Merge pull request #117 from PHPCSStandards/feature/ghactions-add-php… #24

name: Check PRs for merge conflicts
on:
push:
branches:
- master
# Cancels all previous workflow runs for the same branch that have not yet completed.
concurrency:
# The concurrency group contains the workflow name and the branch name.
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
check-prs:
runs-on: ubuntu-latest
if: github.repository_owner == 'PHPCSStandards'
name: Check PRs for merge conflicts
steps:
- uses: mschilde/auto-label-merge-conflicts@master
with:
CONFLICT_LABEL_NAME: "Status: has merge conflict"
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}