fix: resolve 10 high-severity SonarCloud issues #81
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
| --- | |
| # See https://github.com/ansible/team-devtools/blob/main/.github/workflows/ack.yml | |
| name: ack | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| on: | |
| pull_request_target: | |
| types: [opened, labeled, unlabeled, synchronize] | |
| # Caller must grant at least the permissions required by team-devtools ack.yml. | |
| permissions: | |
| checks: write # required-labels / status checks | |
| contents: write # needed to update release draft | |
| pull-requests: write # PR approval, labels, and merge | |
| jobs: | |
| ack: | |
| uses: ansible/team-devtools/.github/workflows/ack.yml@main | |
| secrets: inherit |