Refactor Codacy workflow configuration #47
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: Codacy Issue Sync | |
| on: | |
| push: | |
| branches: [main, master] | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| issues: write | |
| jobs: | |
| codacy-issue-sync: | |
| uses: TransactionProcessing/org-ci-workflows/.github/workflows/sync-codacy-issues.yml@main | |
| secrets: inherit | |
| with: | |
| # Optional: you can omit both and the reusable workflow will default them | |
| # to the calling repo owner/name. Keeping them explicit is fine too. | |
| codacy_org: TransactionProcessing | |
| codacy_repo: TransactionMobile | |
| # Optional knobs | |
| dry_run: false | |
| severity_filter: "Error,High,Warning,Info" | |
| extra_labels: "" | |
| assignees: "" |