[Guitar Tools] Add audio device selection for external audio interfaces #54786
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
| name: "Changelog Enforcer" | |
| on: | |
| pull_request: | |
| types: [opened, synchronize, reopened, ready_for_review, labeled, unlabeled] | |
| paths: | |
| - "extensions/**" | |
| branches: [main, master] | |
| jobs: | |
| changelog: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Changelog enforce | |
| id: enforce | |
| uses: raycast/github-actions/changelog-enforcer@master | |
| continue-on-error: true | |
| - name: Fail if changelog missing | |
| if: steps.enforce.outcome == 'failure' | |
| run: exit 1 |