[CHIA-1211] Use better key resolution logic in derivation commands #18325
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 | |
on: | |
pull_request: | |
types: [opened, labeled, unlabeled, synchronize] | |
jobs: | |
check-labels: | |
runs-on: ubuntu-latest | |
permissions: | |
checks: write | |
pull-requests: read | |
statuses: write | |
outputs: | |
status: ${{ steps.check-labels.outputs.status }} | |
steps: | |
- id: check-labels | |
uses: mheap/github-action-required-labels@v5 | |
with: | |
mode: exactly | |
count: 1 | |
labels: "Added, Changed, Fixed" | |
exit_type: success | |
- run: echo SUCCESS | |
if: steps.check-labels.outputs.status == 'success' | |
- run: echo FAILURE && exit 1 | |
if: steps.check-labels.outputs.status == 'failure' |