feat: support explicit raw secret values #2423
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: Verify Repository Symlinks | |
| on: | |
| pull_request: | |
| # Required checks must also run against the synthetic commit created for a | |
| # GitHub merge queue entry. | |
| merge_group: | |
| types: [checks_requested] | |
| push: | |
| branches: [main] | |
| permissions: | |
| contents: read | |
| jobs: | |
| verify-symlinks: | |
| name: Verify tracked symlinks | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| with: | |
| persist-credentials: false | |
| - name: Verify tracked symlinks resolve | |
| run: scripts/check-symlinks.sh |