Skip to content

Commit 148f685

Browse files
CopilotDRSDavidSoft
andcommitted
Add missing success conditionals to CodeQL and branches workflows
Co-authored-by: DRSDavidSoft <4673812+DRSDavidSoft@users.noreply.github.com>
1 parent 799f63d commit 148f685

2 files changed

Lines changed: 3 additions & 0 deletions

File tree

.github/workflows/branches.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ jobs:
4848
git push origin development
4949
5050
- name: Summary - Merge completed
51+
if: success()
5152
shell: bash
5253
run: |
5354
echo "### ✅ Merge Successful" >> $GITHUB_STEP_SUMMARY

.github/workflows/codeql.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@ jobs:
8383
run: .\build.ps1 -Compile -verbose
8484

8585
- name: Summary - Build status
86+
if: success()
8687
shell: pwsh
8788
run: |
8889
echo "### ✅ Build Completed" >> $env:GITHUB_STEP_SUMMARY
@@ -96,6 +97,7 @@ jobs:
9697
category: "/language:${{matrix.language}}"
9798

9899
- name: Summary - Analysis completed
100+
if: success()
99101
shell: pwsh
100102
run: |
101103
echo "### 🔍 CodeQL Analysis Results" >> $env:GITHUB_STEP_SUMMARY

0 commit comments

Comments
 (0)