feat(blog): GSoC 2025 call for mentors #8275
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: "Label conflicting PRs" | |
on: | |
push: | |
pull_request_target: | |
types: [synchronize] | |
permissions: | |
pull-requests: write | |
jobs: | |
main: | |
if: github.event.pull_request.user.login != 'dependabot[bot]' && github.event.pull_request.user.login != 'jenkins-infra-changelog-generator' && github.repository_owner == 'jenkins-infra' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Label conflicting PRs | |
uses: eps1lon/actions-label-merge-conflict@1b1b1fcde06a9b3d089f3464c96417961dde1168 # v3.0.2 | |
with: | |
dirtyLabel: "unresolved-merge-conflict" | |
repoToken: "${{ secrets.GITHUB_TOKEN }}" | |
commentOnDirty: "Please take a moment and address the merge conflicts of your pull request. Thanks!" | |
continueOnMissingPermissions: true |