[ENHANCEMENT] Reduce volume when focus is lost #3740
Workflow file for this run
This file contains hidden or 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
# Applies the following labels to pull requests whenver they are created or modified: | |
# - pr: documentation | |
# - pr: haxe | |
# - pr: github | |
# - size: tiny | |
# - size: small | |
# - size: medium | |
# - size: large | |
# - size: huge | |
# see .github/labeler.yml and .github/changed-lines-count-labeler.yml | |
name: "Pull Request Labeler" | |
on: | |
- pull_request_target | |
jobs: | |
# Apply labels to pull requests based on which files were edited | |
labeler: | |
permissions: | |
contents: read | |
pull-requests: write | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set basic labels | |
uses: actions/labeler@v5 | |
with: | |
sync-labels: true | |
# Apply labels to pull requests based on how many lines were edited | |
changed-lines-count-labeler: | |
permissions: | |
contents: read | |
pull-requests: write | |
runs-on: ubuntu-latest | |
name: An action for automatically labelling pull requests based on the changed lines count | |
steps: | |
- name: Set change count labels | |
uses: vkirilichev/[email protected] | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
configuration-path: .github/changed-lines-count-labeler.yml |