Skip to content

Commit 04553e7

Browse files
Add GitHub Actions workflows for CI, cleanup, and release processes
1 parent cea314b commit 04553e7

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ jobs:
147147
148148
- name: Remove this workflow file
149149
run: |
150-
rm .github/workflows/github-bootstrap-repo.yml
150+
rm .github/workflows/bootstrap.yml
151151
152152
- name: Commit changes
153153
run: |
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
name: 'PS CodeQL Analysis'
2-
run-name: "${{ github.event.repository.name }} | PS CodeQL Analysis | ${{ github.run_id }} | ${{ github.event_name }}"
1+
name: 'CodeQL'
2+
run-name: "${{ github.event.repository.name }} | CodeQL | ${{ github.run_id }} | ${{ github.event_name }}"
33
on:
44
workflow_call:
55
schedule:

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
55
A production-ready PowerShell module template with built-in CI/CD, testing, versioning, and publishing workflows using GitHub Actions.
66

7-
[![CI](https://github.com/WarehouseFinds/PSScriptModule/actions/workflows/github-ci.yml/badge.svg)](https://github.com/WarehouseFinds/PSScriptModule/actions/workflows/github-ci.yml)
8-
[![Code Coverage](https://img.shields.io/github/actions/workflow/status/WarehouseFinds/PSScriptModule/github-ci.yml?branch=main&label=code%20coverage)](https://github.com/WarehouseFinds/PSScriptModule/actions/workflows/github-ci.yml)
7+
[![CI](https://github.com/WarehouseFinds/PSScriptModule/actions/workflows/ci.yml/badge.svg)](https://github.com/WarehouseFinds/PSScriptModule/actions/workflows/ci.yml)
8+
[![Code Coverage](https://img.shields.io/github/actions/workflow/status/WarehouseFinds/PSScriptModule/ci.yml?branch=main&label=code%20coverage)](https://github.com/WarehouseFinds/PSScriptModule/actions/workflows/ci.yml)
99
[![PowerShell Gallery](https://img.shields.io/powershellgallery/v/PSScriptModule.svg)](https://www.powershellgallery.com/packages/PSScriptModule)
1010
[![Downloads](https://img.shields.io/powershellgallery/dt/PSScriptModule.svg)](https://www.powershellgallery.com/packages/PSScriptModule)
1111
[![License](https://img.shields.io/github/license/WarehouseFinds/PSScriptModule)](LICENSE)

docs/ci-cd.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ For documentation-only changes, the workflow intelligently skips unnecessary job
9999
# CI automatically skips tests for:
100100
- *.md files
101101
- docs/** files
102-
- .github/** workflow files (except changes to github-ci.yml itself)
102+
- .github/** workflow files (except changes to ci.yml itself)
103103
```
104104
105105
## Versioning Strategy
@@ -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/github-ci.yml
504+
# Solution: Check workflow triggers in .github/workflows/ci.yml
505505
# Ensure your branch/PR matches trigger conditions
506506
```
507507

0 commit comments

Comments
 (0)