Clarify return ordering and units for get_revealed_commitment_by_hotkey
#332
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
| name: Changelog guard (for release of hotfix) | |
| permissions: | |
| contents: read | |
| on: | |
| pull_request: | |
| branches: | |
| - staging | |
| - master | |
| jobs: | |
| changelog: | |
| if: startsWith(github.head_ref, 'release/') || startsWith(github.head_ref, 'hotfix/') | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: tj-actions/changed-files@v46 | |
| id: changed | |
| - name: Ensure CHANGELOG.md updated | |
| if: contains(steps.changed.outputs.all_changed_files, 'CHANGELOG.md') == false | |
| uses: actions/github-script@v7 | |
| with: | |
| script: core.setFailed('CHANGELOG.md must be updated.') |