Skip to content

Commit dae6505

Browse files
Fix
1 parent d8bd5d6 commit dae6505

File tree

4 files changed

+62
-6
lines changed

4 files changed

+62
-6
lines changed

.github/workflows/Workflow-CD-Test-Default.yml renamed to .github/workflows/Workflow-Test-Default-CD.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
name: Workflow-Test [Default]
1+
name: Workflow-Test CD [Default]
22

3-
run-name: "Workflow-Test [Default] - [${{ github.event.pull_request.title }} #${{ github.event.pull_request.number }}] by @${{ github.actor }}"
3+
run-name: "Workflow-Test CD [Default] - [${{ github.event.pull_request.title }} #${{ github.event.pull_request.number }}] by @${{ github.actor }}"
44

55
on: [pull_request]
66

@@ -16,7 +16,7 @@ permissions:
1616
id-token: write
1717

1818
jobs:
19-
WorkflowTestDefault:
19+
WorkflowTestCDDefault:
2020
uses: ./.github/workflows/workflow.yml
2121
secrets: inherit
2222
with:
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Workflow-Test CI [Default]
2+
3+
run-name: "Workflow-Test CI [Default] - [${{ github.event.pull_request.title }} #${{ github.event.pull_request.number }}] by @${{ github.actor }}"
4+
5+
on: [pull_request]
6+
7+
concurrency:
8+
group: ${{ github.workflow }}-${{ github.ref }}
9+
cancel-in-progress: true
10+
11+
permissions:
12+
contents: write
13+
pull-requests: write
14+
statuses: write
15+
pages: write
16+
id-token: write
17+
18+
jobs:
19+
WorkflowTestCIDefault:
20+
uses: ./.github/workflows/workflow.yml
21+
secrets: inherit
22+
with:
23+
Name: PSModuleTest
24+
Path: tests/src
25+
ModulesOutputPath: tests/outputs/modules
26+
DocsOutputPath: tests/outputs/docs
27+
TestProcess: true
28+
SkipTests: Module

.github/workflows/Workflow-CD-Test-WithManifest.yml renamed to .github/workflows/Workflow-Test-WithManifest-CD.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
name: Workflow-Test [WithManifest]
1+
name: Workflow-Test CD [WithManifest]
22

3-
run-name: "Workflow-Test [WithManifest] - [${{ github.event.pull_request.title }} #${{ github.event.pull_request.number }}] by @${{ github.actor }}"
3+
run-name: "Workflow-Test CD [WithManifest] - [${{ github.event.pull_request.title }} #${{ github.event.pull_request.number }}] by @${{ github.actor }}"
44

55
on: [pull_request]
66

@@ -16,7 +16,7 @@ permissions:
1616
id-token: write
1717

1818
jobs:
19-
WorkflowTestWithManifest:
19+
WorkflowTestCDWithManifest:
2020
uses: ./.github/workflows/workflow.yml
2121
secrets: inherit
2222
with:
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Workflow-Test CI [WithManifest]
2+
3+
run-name: "Workflow-Test CI [WithManifest] - [${{ github.event.pull_request.title }} #${{ github.event.pull_request.number }}] by @${{ github.actor }}"
4+
5+
on: [pull_request]
6+
7+
concurrency:
8+
group: ${{ github.workflow }}-${{ github.ref }}
9+
cancel-in-progress: true
10+
11+
permissions:
12+
contents: write
13+
pull-requests: write
14+
statuses: write
15+
pages: write
16+
id-token: write
17+
18+
jobs:
19+
WorkflowTestCIWithManifest:
20+
uses: ./.github/workflows/workflow.yml
21+
secrets: inherit
22+
with:
23+
Name: PSModuleTest
24+
Path: tests/srcWithManifest
25+
ModulesOutputPath: tests/outputs/modules
26+
DocsOutputPath: tests/outputs/docs
27+
TestProcess: true
28+
SkipTests: Desktop, Linux

0 commit comments

Comments
 (0)