Fix dependency resolution order and reduce transient errors during resource reconciliation #19
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@v7 | |
| 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'] | |
| }) |