chore: cleanup AWS_ROLE_TO_ASSUME secret #518
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: PR | |
| on: | |
| pull_request: | |
| types: | |
| - opened | |
| - edited | |
| - ready_for_review | |
| - reopened | |
| - synchronize | |
| jobs: | |
| pr: | |
| uses: parcelLab/ci/.github/workflows/pr.yaml@v8 | |
| secrets: | |
| repoAccessToken: ${{ secrets.GITHUB_TOKEN }} | |
| actionlint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout current git repository | |
| uses: actions/checkout@v6 | |
| - name: Set up go environment | |
| uses: actions/setup-go@v6 | |
| - name: Install actionlint | |
| run: go install github.com/rhysd/actionlint/cmd/actionlint@v1.6.23 | |
| - name: Run actionlint | |
| run: /home/runner/go/bin/actionlint | |
| yamllint: | |
| uses: parcelLab/ci/.github/workflows/yaml.yaml@v8 |