fix(finops): name the workspace engine tool when a FinOps tool has no local connection #703
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: pr-management | ||
|
Check warning on line 1 in .github/workflows/pr-management.yml
|
||
| on: | ||
| pull_request_target: | ||
| types: [opened] | ||
| jobs: | ||
| add-contributor-label: | ||
| runs-on: ubuntu-latest | ||
| permissions: | ||
| pull-requests: write | ||
| issues: write | ||
| steps: | ||
| - name: Add Contributor Label | ||
| uses: actions/github-script@v8 | ||
| with: | ||
| script: | | ||
| const isPR = !!context.payload.pull_request; | ||
| const issueNumber = isPR ? context.payload.pull_request.number : context.payload.issue.number; | ||
| const authorAssociation = isPR ? context.payload.pull_request.author_association : context.payload.issue.author_association; | ||
| if (authorAssociation === 'CONTRIBUTOR') { | ||
| await github.rest.issues.addLabels({ | ||
| owner: context.repo.owner, | ||
| repo: context.repo.repo, | ||
| issue_number: issueNumber, | ||
| labels: ['contributor'] | ||
| }); | ||
| } | ||