Fix SonarCloud action config #9
Workflow file for this run
This file contains 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: Check and add labels in PR | |
on: | |
pull_request: | |
types: [ opened, labeled, unlabeled, synchronize ] | |
jobs: | |
label-verify: | |
name: Verify labels in PR | |
uses: ./.github/workflows/label-verify.yml | |
with: | |
exit_type: ${{ github.event.action == 'opened' && 'success' || 'failure' }} | |
labeler: | |
name: Auto-assign labels to PR | |
if: needs.label-verify.outputs.result == 'failure' | |
needs: label-verify | |
uses: ./.github/workflows/labeler.yml | |
retry-label-verify: | |
name: Retry verify labels in PR | |
needs: labeler | |
uses: ./.github/workflows/label-verify.yml |