chore: follow up changeset #1600
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: GHA Workflow Validation | |
| on: | |
| pull_request: | |
| merge_group: | |
| jobs: | |
| validate-workflows: | |
| name: Validate Workflow Changes | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| # Skip on merge group events | |
| if: ${{ github.event_name == 'pull_request' }} | |
| steps: | |
| - name: Checkout Repo | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 1 | |
| persist-credentials: false | |
| - name: Run gha-workflow-validator action | |
| uses: smartcontractkit/.github/actions/gha-workflow-validator@gha-workflow-validator/v1 | |
| env: | |
| GITHUB_TOKEN: ${{ github.token }} | |
| with: | |
| # No longer needed - previously used when versions of actions/cache were being deprecated | |
| validate-actions-cache-version: "false" |