bug(hubble): Sync Failure in v1.18.0 Nodes ~1 Hour Post v1.19.0 Release (Root Cause Unclear) #319
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: Label Issues | |
| on: | |
| issues: | |
| types: [opened] | |
| jobs: | |
| label_issues: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Add label | |
| uses: actions/github-script@v6 | |
| 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: ['s-triage'] | |
| }) |