feat: added CHECKOUT_TOKEN support to go-test and go-check workflows #259
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
| on: | |
| pull_request: | |
| name: Check 3rd Party | |
| jobs: | |
| matrix: | |
| runs-on: ubuntu-latest | |
| outputs: | |
| targets: ${{ steps.set-matrix.outputs.targets }} | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - id: set-matrix | |
| run: | | |
| TARGETS=$(find . -type f -name "*.yml" | sed "s|^\./||" | grep -v workflow-templates/header.yml | jq -R -s -c 'split("\n")[:-1]') | |
| echo "targets=$TARGETS" >> $GITHUB_OUTPUT | |
| check: | |
| needs: [ matrix ] | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| file: ${{ fromJSON(needs.matrix.outputs.targets) }} | |
| name: ${{ matrix.file }} | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: ./.github/actions/render-templates | |
| - name: Run check | |
| env: | |
| FILE: ${{ matrix.file }} | |
| run: ./scripts/check-3rd-party.sh $FILE |