Bump read-vault-secrets action, fix flaky edit-fake-cluster e2e test #22141
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: gh-project-integration | |
| on: | |
| pull_request: | |
| types: [ opened, reopened, edited, closed ] | |
| jobs: | |
| rancher_gh_project: | |
| if: ${{ github.repository_owner == 'rancher' }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 | |
| - name: Use Node.js | |
| uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6 | |
| with: | |
| node-version-file: '.nvmrc' | |
| - name: Write GitHub Event | |
| run: | | |
| cat $GITHUB_EVENT_PATH > event.json | |
| - name: Upload event data so it can be used in the processor workflow | |
| uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 | |
| with: | |
| name: pr-gh-project-event | |
| path: event.json | |
| if-no-files-found: error | |
| retention-days: 1 | |
| compression-level: 9 |