[TASK] explore creating schema validation for env keys in values.yaml #2752
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: Repo - Issue Labels | |
| on: | |
| issues: | |
| types: | |
| - opened | |
| - edited | |
| permissions: | |
| issues: write | |
| contents: read | |
| jobs: | |
| issue-labeler: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Run Issue Labeler | |
| uses: github/issue-labeler@c1b0f9f52a63158c4adc09425e858e87b32e9685 # v3.4 | |
| with: | |
| configuration-path: .github/config/issue-labeler.yaml | |
| enable-versioned-regex: 0 | |
| repo-token: "${{ github.token }}" | |
| - name: Checkout | |
| uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5 | |
| with: | |
| ref: ${{ github.event.pull_request.head.ref }} | |
| fetch-depth: 0 | |
| - name: Ensure PR branch is up to date | |
| run: | | |
| git rev-list --left-right --count origin/main...HEAD | grep -q "^0" |