Bump elgohr/Publish-Docker-Github-Action from c20fc91411aa7d8a3961f40c27d12648d1812716 to 35909b29219ee8b86f0d2307dc4533bb294128ed #114
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: Add PR labels | |
on: | |
push: | |
branches: | |
- dev | |
pull_request_target: | |
types: [ready_for_review, opened, synchronize, reopened] | |
jobs: | |
Apply_labels: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
pull-requests: write | |
steps: | |
- name: Check for merge conflict | |
uses: eps1lon/actions-label-merge-conflict@1b1b1fcde06a9b3d089f3464c96417961dde1168 | |
with: | |
dirtyLabel: "Merge Conflict" | |
repoToken: "${{ secrets.GITHUB_TOKEN }}" | |
commentOnDirty: "This pull request has conflicts, please resolve those before we can evaluate your pull request." | |
- name: Apply labels | |
if: github.event_name != 'push' | |
uses: actions/labeler@main | |
with: | |
repo-token: "${{ secrets.GITHUB_TOKEN }}" | |
sync-labels: true | |
configuration-path: .github/file_labeler.yml |