This repository has been archived by the owner on Nov 1, 2024. It is now read-only.
update event raising on upstream #927
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: Check Merge Conflicts | |
on: | |
pull_request_target: | |
types: | |
- opened | |
- synchronize | |
- reopened | |
- ready_for_review | |
jobs: | |
Label: | |
if: ( github.event.pull_request.draft == false ) && ( github.actor != 'PJBot' ) | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check for Merge Conflicts | |
uses: eps1lon/[email protected] | |
with: | |
dirtyLabel: "Merge Conflict" | |
repoToken: "${{ secrets.GITHUB_TOKEN }}" | |
commentOnDirty: "This pull request has conflicts, please resolve those before we can evaluate the pull request." |