WIP 🐛 Ensures Helm-based extensions keep running when their catalog is deleted or unavailable #29
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: api-diff-lint | |
| on: | |
| pull_request: | |
| jobs: | |
| lint-api-diff: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| pull-requests: read | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 # Fetch all history for all branches (needed for API diff) | |
| - uses: actions/setup-go@v6 | |
| with: | |
| go-version-file: go.mod | |
| - name: Run API diff linting checks | |
| id: lint-api-diff | |
| continue-on-error: true | |
| run: make lint-api-diff | |
| - name: Check for override label | |
| if: ${{ steps.lint-api-diff.outcome == 'failure' }} | |
| run: | | |
| if gh api repos/$OWNER/$REPO/pulls/$PR --jq '.labels.[].name' | grep -q "${OVERRIDE_LABEL}"; then | |
| echo "Found ${OVERRIDE_LABEL} label, overriding failed results." | |
| exit 0 | |
| else | |
| echo "No ${OVERRIDE_LABEL} label found, failing the job." | |
| exit 1 | |
| fi | |
| env: | |
| GH_TOKEN: ${{ github.token }} | |
| OWNER: ${{ github.repository_owner }} | |
| REPO: ${{ github.event.repository.name }} | |
| PR: ${{ github.event.pull_request.number }} | |
| OVERRIDE_LABEL: "api-diff-lint-override" | |