Skip to content

Commit aa06c42

Browse files
Update CI workflows and README template for consistency and accuracy
1 parent 33e9c1c commit aa06c42

File tree

7 files changed

+6
-6
lines changed

7 files changed

+6
-6
lines changed

.github/README_template.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
{MODULE_DESCRIPTION}
44

5-
[![Build Status](https://img.shields.io/github/actions/workflow/status/{MODULE_PATH}/ci.yml?branch=main&logo=github&style=flat-square)](https://github.com/{MODULE_PATH}/actions/workflows/ci.yml)
5+
[![Build Status](https://img.shields.io/github/actions/workflow/status/{MODULE_PATH}/github-ci.yml?branch=main&logo=github&style=flat-square)](https://github.com/{MODULE_PATH}/actions/workflows/github-ci.yml)
66
[![PowerShell Gallery](https://img.shields.io/powershellgallery/v/{MODULE_NAME}.svg)](https://www.powershellgallery.com/packages/{MODULE_NAME})
77
[![Downloads](https://img.shields.io/powershellgallery/dt/{MODULE_NAME}.svg)](https://www.powershellgallery.com/packages/{MODULE_NAME})
88
[![License](https://img.shields.io/github/license/{MODULE_PATH})](LICENSE)

.github/workflows/github-ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
unit-tests:
4343
name: Unit Tests
4444
needs: [setup]
45-
uses: .github/workflows/ps-analysis-unit-tests.yml
45+
uses: .github/workflows/ps-unit-tests.yml
4646
permissions:
4747
issues: write
4848
pull-requests: write
@@ -53,7 +53,7 @@ jobs:
5353
static-code-analysis:
5454
name: Static Code Analysis
5555
needs: [setup]
56-
uses: .github/workflows/ps-analysis-static-code.yml
56+
uses: .github/workflows/ps-static-code-analysis.yml
5757
permissions:
5858
issues: write
5959
pull-requests: write
@@ -64,7 +64,7 @@ jobs:
6464
code-injection:
6565
name: Code Injection
6666
needs: [setup]
67-
uses: .github/workflows/ps-analysis-code-injection.yml
67+
uses: .github/workflows/ps-code-injection.yml
6868
permissions:
6969
issues: write
7070
pull-requests: write
@@ -75,7 +75,7 @@ jobs:
7575
semantic-code-analysis:
7676
name: Semantic Code Analysis
7777
needs: [setup]
78-
uses: .github/workflows/ps-analysis-codeQL.yml
78+
uses: .github/workflows/github-codeQL.yml
7979
permissions:
8080
security-events: write
8181
actions: read
File renamed without changes.
File renamed without changes.
File renamed without changes.

docs/ci-cd.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -501,7 +501,7 @@ git push origin v1.0.0
501501
**Problem**: Workflow not triggering
502502

503503
```yaml
504-
# Solution: Check workflow triggers in .github/workflows/ci.yml
504+
# Solution: Check workflow triggers in .github/workflows/github-ci.yml
505505
# Ensure your branch/PR matches trigger conditions
506506
```
507507

0 commit comments

Comments
 (0)