mirror of
https://github.com/cmderdev/cmder.git
synced 2025-12-15 02:08:52 +08:00
Add missing success conditionals to CodeQL and branches workflows
Co-authored-by: DRSDavidSoft <4673812+DRSDavidSoft@users.noreply.github.com>
This commit is contained in:
1
.github/workflows/branches.yml
vendored
1
.github/workflows/branches.yml
vendored
@@ -48,6 +48,7 @@ jobs:
|
|||||||
git push origin development
|
git push origin development
|
||||||
|
|
||||||
- name: Summary - Merge completed
|
- name: Summary - Merge completed
|
||||||
|
if: success()
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
echo "### ✅ Merge Successful" >> $GITHUB_STEP_SUMMARY
|
echo "### ✅ Merge Successful" >> $GITHUB_STEP_SUMMARY
|
||||||
|
|||||||
2
.github/workflows/codeql.yml
vendored
2
.github/workflows/codeql.yml
vendored
@@ -83,6 +83,7 @@ jobs:
|
|||||||
run: .\build.ps1 -Compile -verbose
|
run: .\build.ps1 -Compile -verbose
|
||||||
|
|
||||||
- name: Summary - Build status
|
- name: Summary - Build status
|
||||||
|
if: success()
|
||||||
shell: pwsh
|
shell: pwsh
|
||||||
run: |
|
run: |
|
||||||
echo "### ✅ Build Completed" >> $env:GITHUB_STEP_SUMMARY
|
echo "### ✅ Build Completed" >> $env:GITHUB_STEP_SUMMARY
|
||||||
@@ -96,6 +97,7 @@ jobs:
|
|||||||
category: "/language:${{matrix.language}}"
|
category: "/language:${{matrix.language}}"
|
||||||
|
|
||||||
- name: Summary - Analysis completed
|
- name: Summary - Analysis completed
|
||||||
|
if: success()
|
||||||
shell: pwsh
|
shell: pwsh
|
||||||
run: |
|
run: |
|
||||||
echo "### 🔍 CodeQL Analysis Results" >> $env:GITHUB_STEP_SUMMARY
|
echo "### 🔍 CodeQL Analysis Results" >> $env:GITHUB_STEP_SUMMARY
|
||||||
|
|||||||
Reference in New Issue
Block a user