fix: PH2160 auto-fixer NullReferenceException on implicit object creation #3862
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: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| merge_group: | |
| types: [checks_requested] | |
| branches: [main] | |
| jobs: | |
| pinnedactions: | |
| if: ${{ github.event_name == 'pull_request' || github.event_name == 'merge_group' }} | |
| uses: ./.github/workflows/pinned-actions.yml | |
| docupdate: | |
| if: ${{ github.event_name == 'pull_request' || github.event_name == 'merge_group' }} | |
| uses: ./.github/workflows/doc-update.yml | |
| format: | |
| if: ${{ github.event_name == 'pull_request' || github.event_name == 'merge_group' }} | |
| uses: ./.github/workflows/format.yml | |
| dogfood: | |
| if: ${{ github.event_name == 'pull_request' || github.event_name == 'merge_group' }} | |
| uses: ./.github/workflows/dogfood.yml | |
| sonarcloud: | |
| uses: ./.github/workflows/sonarcloud.yml | |
| secrets: | |
| sonar-auth-token: ${{ secrets.SONAR_TOKEN }} | |
| performance: | |
| uses: ./.github/workflows/performance.yml | |
| detect-major-version: | |
| uses: ./.github/workflows/detect-major-version.yml | |
| tagversion: | |
| needs: [detect-major-version] | |
| uses: ./.github/workflows/tagversion.yml | |
| with: | |
| custom_tag: ${{ needs.detect-major-version.outputs.custom_tag }} | |
| build: | |
| needs: tagversion | |
| uses: ./.github/workflows/dotnetcore.yml | |
| with: | |
| new_tag: ${{ needs.tagversion.outputs.new_tag }} | |
| new_version: ${{ needs.tagversion.outputs.new_version }} | |