fix: delete externally managed APIM APIs before terraform destroy #1403
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: Code Quality | |
| on: | |
| schedule: | |
| - cron: "30 1 * * 1" | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| types: [opened, synchronize, reopened, ready_for_review] | |
| permissions: {} | |
| jobs: | |
| quality: | |
| permissions: | |
| contents: read | |
| actions: read | |
| security-events: write | |
| uses: frasermolyneux/actions/.github/workflows/codequality.yml@main | |
| with: | |
| sonar-project-key: frasermolyneux_portal-repository | |
| sonar-organization: frasermolyneux | |
| sonar-host-url: https://sonarcloud.io | |
| build-target: dotnet-ci | |
| dotnet-version: | | |
| 9.0.x | |
| 10.0.x | |
| src-folder: src | |
| secrets: | |
| SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
| devops-secure-scanning: | |
| permissions: | |
| contents: read | |
| actions: read | |
| id-token: write | |
| security-events: write | |
| uses: frasermolyneux/actions/.github/workflows/devops-secure-scanning.yml@main | |
| dependency-review: | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| if: github.event_name == 'pull_request' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| - name: Dependency Review | |
| uses: actions/dependency-review-action@v4 | |
| with: | |
| comment-summary-in-pr: always | |