[CCS-13176] Fix validation for Kubernetes keys #184
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: Draft Release | |
| on: | |
| pull_request: | |
| types: [closed] | |
| branches: ['main'] | |
| jobs: | |
| update-release-draft: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| # write permission is required to create a github release | |
| contents: write | |
| pull-requests: write | |
| steps: | |
| - name: Update Release Draft | |
| uses: release-drafter/release-drafter@v6 | |
| with: | |
| disable-autolabeler: true | |
| commitish: main | |
| publish: false | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |