Missing permissions for ConfigMaps causes Operator initialization failure #27
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: Labeler | |
| "on": | |
| issues: | |
| types: | |
| - opened | |
| jobs: | |
| apply_label: | |
| name: Apply prefect-operator label to all issues | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Apply prefect-operator label to all issues | |
| uses: actions/github-script@v8 | |
| with: | |
| github-token: ${{secrets.GITHUB_TOKEN}} | |
| script: | | |
| github.rest.issues.addLabels({ | |
| issue_number: context.issue.number, | |
| owner: context.repo.owner, | |
| repo: context.repo.repo, | |
| labels: ['prefect-operator'] | |
| }) |