feat: Add Custom Printer Columns to ApplicationSet CRD #48945
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: "Lint PR" | |
| on: | |
| pull_request: | |
| types: [opened, edited, reopened, synchronize] | |
| permissions: {} | |
| env: | |
| # a workaround to disable harden runner | |
| STEP_SECURITY_HARDEN_RUNNER: ${{ vars.disable_harden_runner }} | |
| # PR updates can happen in quick succession leading to this | |
| # workflow being trigger a number of times. This limits it | |
| # to one run per PR. | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.head_ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| validate: | |
| permissions: | |
| contents: read | |
| pull-requests: read | |
| name: Validate PR Title | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Harden the runner (Audit all outbound calls) | |
| if: ${{ vars.disable_harden_runner != 'true' }} | |
| uses: step-security/harden-runner@f808768d1510423e83855289c910610ca9b43176 # v2.17.0 | |
| with: | |
| egress-policy: audit | |
| - uses: thehanimo/pr-title-checker@7fbfe05602bdd86f926d3fb3bccb6f3aed43bc70 # v1.4.3 | |
| with: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| configuration_path: ".github/pr-title-checker-config.json" |