Generalize findSwiftExecutable
into findExecutable
#1168
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: Check PR labels | |
# Controls when the action will run. Triggers the workflow on push or pull request | |
# events but only for the main branch | |
on: | |
pull_request: | |
branches: [ main ] | |
types: [ opened, synchronize, reopened, labeled, unlabeled ] | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
check-labels: | |
# The type of runner that the job will run on | |
runs-on: ubuntu-latest | |
steps: | |
- name: Match PR Label | |
uses: zwaldowski/match-label-action@v2 | |
with: | |
allowed_multiple: > | |
bug, | |
continuous integration, | |
dependencies, | |
documentation, | |
enhancement, | |
refactor, |