#3902 fix-up launcher buttons list #4785
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
# This action runs when a new PR is opened and will add labels to the PR | |
# if the files changed glob match any of the defined rules in .github/labeler.yml | |
name: Pull Request Labeler | |
on: | |
workflow_dispatch: | |
pull_request_target: | |
jobs: | |
triage: | |
name: Add labels to PR | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
with: | |
repo-token: ${{ secrets.OSC_ROBOT_GH_PUB_REPO_TOKEN }} | |
configuration-path: .github/labeler.yml | |
sync-labels: true # Revert the labels applied to the PR when changes are reverted. |