Skip to content

Commit 482472c

Browse files
Revert CI changes made for faster troubleshooting
1 parent 58d846a commit 482472c

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
name: Unit Tests
3636
needs: [setup]
3737
uses: ./.github/workflows/powershell-unit-tests.yml
38-
if: github.event_name == 'pull_request'
38+
if: github.event_name == 'pull_request' || github.event_name == 'push'
3939
permissions:
4040
issues: write
4141
pull-requests: write
@@ -47,7 +47,7 @@ jobs:
4747
name: Static Code Analysis
4848
needs: [setup]
4949
uses: ./.github/workflows/powershell-static-code-analysis.yml
50-
if: github.event_name == 'pull_request'
50+
if: github.event_name == 'pull_request' || github.event_name == 'push'
5151
permissions:
5252
issues: write
5353
pull-requests: write
@@ -59,7 +59,7 @@ jobs:
5959
name: Code Injection
6060
needs: [setup]
6161
uses: ./.github/workflows/powershell-code-injection-analysis.yml
62-
if: github.event_name == 'pull_request'
62+
if: github.event_name == 'pull_request' || github.event_name == 'push'
6363
permissions:
6464
issues: write
6565
pull-requests: write
@@ -71,7 +71,7 @@ jobs:
7171
name: Semantic Code Analysis
7272
needs: [setup]
7373
uses: ./.github/workflows/powershell-semantic-code-analysis.yml
74-
if: github.event_name == 'pull_request'
74+
if: github.event_name == 'pull_request' || github.event_name == 'push'
7575
permissions:
7676
security-events: write
7777
actions: read
@@ -80,7 +80,7 @@ jobs:
8080

8181
build:
8282
name: Build
83-
needs: [setup] #, unit-tests, static-code-analysis]
83+
needs: [setup, unit-tests, static-code-analysis, code-injection, semantic-code-analysis]
8484
uses: ./.github/workflows/powershell-build-module.yml
8585
permissions:
8686
contents: write

.github/workflows/powershell-build-module.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,6 @@ jobs:
163163
tag_name: v${{ env.majorMinorPatch }}
164164
release_name: Release ${{ env.releaseVersion }}
165165
body: |
166-
This release was automatically generated by GitHub Actions workflow.
167166
${{ steps.generate_release_notes.outputs.releaseNotes }}
168167
draft: false
169168
prerelease: if ${{ env.releaseType }} == 'Prerelease' then true else false

0 commit comments

Comments
 (0)