Playercount change to scps (#1825) #1
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 |