Merge pull request #215 from sprintertech/feat/add-sprinter-signer #357
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: Update docs addresses reminder | ||
|
Check failure on line 1 in .github/workflows/update-addresses.yml
|
||
| on: | ||
| pull_request: | ||
| types: [opened, synchronize, reopened, edited] | ||
| jobs: | ||
| detect-update-addresses-checkbox: | ||
| runs-on: ubuntu-latest | ||
| outputs: | ||
| checked: ${{ steps.detect.outputs.checked }} | ||
| steps: | ||
| - uses: marocchino/checkbox-action@v1 | ||
| id: detect | ||
| with: | ||
| action: 'detect' | ||
| validate-update-addresses-checkbox: | ||
| runs-on: ubuntu-latest | ||
| needs: detect | ||
| if: ${{ contains(fromJSON(needs.detect.outputs.checked)) }} | ||
| uses: actions/github-script@v3 | ||
| with: | ||
| script: | | ||
| core.setFailed('Update adderesses checkbox not checked!') | ||