fix fleet-clusters error missing sub-row element #20277
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@v6 | |
| - name: Use Node.js | |
| uses: actions/setup-node@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@v6 | |
| with: | |
| name: pr-gh-project-event | |
| path: event.json | |
| if-no-files-found: error | |
| retention-days: 1 | |
| compression-level: 9 |