Skip to content

Commit 5019ae0

Browse files
🩹 [Patch]: Update workflow file patterns and run-name formatting for consistency
1 parent eaa2fbb commit 5019ae0

2 files changed

Lines changed: 18 additions & 2 deletions

File tree

‎.github/workflows/Workflow-Test-Default.yml‎

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
11
name: Workflow-Test [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 [Default] - [${{ github.event.pull_request.title }} #${{ github.event.pull_request.number }}] by @${{ github.actor }}'
44

55
on:
66
workflow_dispatch:
77
pull_request:
8+
paths:
9+
- '.github/workflows/**'
10+
- '!.github/workflows/Release.yml'
11+
- '!.github/workflows/Linter.yml'
812
schedule:
913
- cron: '0 0 * * *'
1014

@@ -33,3 +37,7 @@ jobs:
3337
TEST_USER_PAT: ${{ secrets.TEST_USER_PAT }}
3438
with:
3539
WorkingDirectory: tests/srcTestRepo
40+
ImportantFilePatterns: |
41+
^src/
42+
^README\.md$
43+
^\.github/workflows/(?!Release\.yml$|Linter\.yml$)

‎.github/workflows/Workflow-Test-WithManifest.yml‎

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
11
name: Workflow-Test [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 [WithManifest] - [${{ github.event.pull_request.title }} #${{ github.event.pull_request.number }}] by @${{ github.actor }}'
44

55
on:
66
workflow_dispatch:
77
pull_request:
8+
paths:
9+
- '.github/workflows/**'
10+
- '!.github/workflows/Release.yml'
11+
- '!.github/workflows/Linter.yml'
812
schedule:
913
- cron: '0 0 * * *'
1014

@@ -33,3 +37,7 @@ jobs:
3337
TEST_USER_PAT: ${{ secrets.TEST_USER_PAT }}
3438
with:
3539
WorkingDirectory: tests/srcWithManifestTestRepo
40+
ImportantFilePatterns: |
41+
^src/
42+
^README\.md$
43+
^\.github/workflows/(?!Release\.yml$|Linter\.yml$)

0 commit comments

Comments
 (0)