Skip to content

Commit f23fc0a

Browse files
Merge pull request #121 from WarehouseFinds/fix/docs_update
Update documentation links in README and refine job names in bootstrap workflow
2 parents 2294313 + 698f423 commit f23fc0a

File tree

3 files changed

+6
-29
lines changed

3 files changed

+6
-29
lines changed

.github/README_template.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ Get-Command -Module {MODULE_NAME}
3636

3737
Comprehensive documentation is available in the [`docs/`](docs/) directory:
3838

39-
- 📘 **[Module Help](docs/module-help.md)** - Help files for cmdlets and functions
40-
- 🚀 **[Getting Started Guide](docs/getting-started.md)** - Initial setup, prerequisites, and your first function
39+
- 📘 **[Module Help](docs/)** - Help files for cmdlets and functions
40+
- 🚀 **[Examples](docs/examples/)** - Practical examples and usage scenarios
4141

4242
## 🤝 Contributing
4343

.github/workflows/bootstrap.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,8 @@ permissions:
1616
contents: write
1717

1818
jobs:
19-
# Get the current step to only run the main job when the learner is on the same step.
2019
get_repo_state:
21-
name: Check current repository state
20+
name: Get repository state
2221
if: ${{ !github.event.repository.is_template }}
2322
runs-on: ubuntu-latest
2423
steps:
@@ -47,8 +46,8 @@ jobs:
4746
current_state: ${{ steps.current_state.outputs.state }}
4847
description: ${{ steps.repo.outputs.description }}
4948

50-
on_start:
51-
name: On start
49+
bootstrap:
50+
name: Bootstrap
5251
needs: get_repo_state
5352

5453
# We will only run this action when:
@@ -137,7 +136,7 @@ jobs:
137136
- name: Update CONTRIBUTING.md
138137
run: |
139138
MODULE_NAME=${{ github.event.repository.name }}
140-
sed -i "s/PSScriptModule/$MODULE_NAME/g" .github/CONTRIBUTING.md
139+
sed -i "s/PSScriptModule/$MODULE_NAME/g" CONTRIBUTING.md
141140
142141
- name: Update LICENSE
143142
run: |

.github/workflows/ci.yml

Lines changed: 0 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -91,28 +91,6 @@ jobs:
9191
with:
9292
module-list: ${{ needs.dependencies.outputs.module-list }}
9393

94-
semantic-code-analysis:
95-
name: Semantic Code Analysis
96-
needs: [dependencies]
97-
runs-on: ubuntu-latest
98-
permissions:
99-
security-events: write
100-
actions: read
101-
contents: read
102-
packages: read
103-
steps:
104-
- name: Checkout repository
105-
uses: actions/checkout@v6
106-
- name: Initialize CodeQL
107-
uses: github/codeql-action/init@v4
108-
with:
109-
languages: actions
110-
build-mode: none
111-
- name: Perform CodeQL Analysis
112-
uses: github/codeql-action/analyze@v4
113-
with:
114-
category: "/language:${{matrix.language}}"
115-
11694
build:
11795
name: Build
11896
needs: [dependencies, unit-tests, static-code-analysis, code-injection, semantic-code-analysis]

0 commit comments

Comments
 (0)