Skip to content

Commit ba8fc93

Browse files
committed
Add trigger phrases to workflow names
1 parent 456674b commit ba8fc93

17 files changed

+17
-10
lines changed

Diff for: .github/workflows/beam_PreCommit_CommunityMetrics.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ permissions:
4545

4646
jobs:
4747
beam_PreCommit_CommunityMetrics:
48-
name: beam_PreCommit_CommunityMetrics
48+
name: beam_PreCommit_CommunityMetrics (Run CommunityMetrics PreCommit)
4949
runs-on: [self-hosted, ubuntu-20.04, main]
5050
if: |
5151
github.event_name == 'push' ||

Diff for: .github/workflows/beam_PreCommit_Go.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
github.event_name == 'schedule' ||
4242
github.event.comment.body == 'Run Go PreCommit'
4343
runs-on: [self-hosted, ubuntu-20.04, main]
44-
name: beam_PreCommit_Go
44+
name: beam_PreCommit_Go (Run Go PreCommit)
4545
steps:
4646
- uses: actions/checkout@v3
4747
with:

Diff for: .github/workflows/beam_PreCommit_Java_Examples_Dataflow.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ permissions:
6565
statuses: read
6666
jobs:
6767
beam_PreCommit_Java_Examples_Dataflow:
68-
name: beam_PreCommit_Java_Examples_Dataflow
68+
name: beam_PreCommit_Java_Examples_Dataflow (Run Java_Examples_Dataflow PreCommit)
6969
runs-on: [self-hosted, ubuntu-20.04, main]
7070
if: |
7171
github.event_name == 'push' ||

Diff for: .github/workflows/beam_PreCommit_PythonDocs.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ permissions:
4545

4646
jobs:
4747
beam_PreCommit_PythonDocs:
48-
name: beam_PreCommit_PythonDocs
48+
name: beam_PreCommit_PythonDocs (Run PythonDocs PreCommit)
4949
if: |
5050
github.event_name == 'push' ||
5151
github.event_name == 'pull_request_target' ||

Diff for: .github/workflows/beam_PreCommit_Python_Integration.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ concurrency:
5151

5252
jobs:
5353
beam_PreCommit_Python_Integration:
54-
name: beam_PreCommit_Python_Integration
54+
name: beam_PreCommit_Python_Integration (Run Python_Integration PreCommit 3.x)
5555
strategy:
5656
fail-fast: false
5757
matrix:

Diff for: .github/workflows/beam_PreCommit_RAT.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
github.event.comment.body == 'Run RAT PreCommit' ||
5050
github.event_name == 'schedule'
5151
runs-on: [self-hosted, ubuntu-20.04]
52-
name: beam_PreCommit_RAT
52+
name: beam_PreCommit_RAT (Run RAT PreCommit)
5353
steps:
5454
- name: Check out repository code
5555
uses: actions/checkout@v3

Diff for: .github/workflows/beam_PreCommit_SQL_Java11.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
github.event_name == 'schedule' ||
5959
github.event.comment.body == 'Run SQL_Java11 PreCommit'
6060
runs-on: [self-hosted, ubuntu-20.04, main]
61-
name: beam_PreCommit_SQL_Java11
61+
name: beam_PreCommit_SQL_Java11 (Run SQL_Java11 PreCommit)
6262
steps:
6363
- name: Checkout repository
6464
uses: actions/checkout@v3

Diff for: .github/workflows/beam_PreCommit_Typescript.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ permissions:
5252
statuses: read
5353
jobs:
5454
beam_PreCommit_Typescript:
55-
name: beam_PreCommit_Typescript
55+
name: beam_PreCommit_Typescript (Run Typescript PreCommit)
5656
runs-on: [self-hosted, ubuntu-20.04, main]
5757
if: |
5858
github.event_name == 'push' ||

Diff for: .github/workflows/beam_PreCommit_Website.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
github.event.comment.body == 'Run Website PreCommit' ||
5757
github.event_name == 'schedule'
5858
runs-on: [self-hosted, ubuntu-20.04, small]
59-
name: beam_PreCommit_Website
59+
name: beam_PreCommit_Website (Run Website PreCommit)
6060
steps:
6161
- uses: actions/checkout@v3
6262
with:

Diff for: .github/workflows/beam_PreCommit_Whitespace.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
github.event_name == 'schedule' ||
5656
github.event.comment.body == 'Run Whitespace PreCommit'
5757
runs-on: [self-hosted, ubuntu-20.04, main]
58-
name: beam_PreCommit_Whitespace
58+
name: beam_PreCommit_Whitespace (Run Whitespace PreCommit)
5959
steps:
6060
- name: Git checkout
6161
uses: actions/checkout@v3

Diff for: .github/workflows/job_PreCommit_Python.yml

+1
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ concurrency:
4949

5050
jobs:
5151
beam_PreCommit_Python:
52+
name: beam_PreCommit_Python (Run Python PreCommit 3.x)
5253
strategy:
5354
fail-fast: false
5455
matrix:

Diff for: .github/workflows/job_PreCommit_PythonAutoformatter.yml

+1
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ concurrency:
4848

4949
jobs:
5050
beam_PreCommit_PythonFormatter:
51+
name: beam_PreCommit_PythonFormatter (Run PythonFormatter PreCommit)
5152
if: |
5253
github.event_name == 'push' ||
5354
github.event_name == 'pull_request_target' ||

Diff for: .github/workflows/job_PreCommit_PythonLint.yml

+1
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ concurrency:
4848

4949
jobs:
5050
beam_PreCommit_PythonLint:
51+
name: beam_PreCommit_PythonLint (Run PythonLint PreCommit)
5152
if: |
5253
github.event_name == 'push' ||
5354
github.event_name == 'pull_request_target' ||

Diff for: .github/workflows/job_PreCommit_Python_Coverage.yml

+1
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ concurrency:
4949

5050
jobs:
5151
beam_PreCommit_Python_Coverage:
52+
name: beam_PreCommit_Python_Coverage (Run Python_Coverage PreCommit)
5253
if: |
5354
github.event_name == 'push' ||
5455
github.event_name == 'pull_request_target' ||

Diff for: .github/workflows/job_PreCommit_Python_Dataframes.yml

+1
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ concurrency:
4848

4949
jobs:
5050
beam_PreCommit_Python_Dataframes:
51+
name: beam_PreCommit_Python_Dataframes (Run Python_Dataframes PreCommit 3.x)
5152
strategy:
5253
fail-fast: false
5354
matrix:

Diff for: .github/workflows/job_PreCommit_Python_DockerBuild.yml

+1
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ concurrency:
4848

4949
jobs:
5050
beam_PreCommit_PythonDocker:
51+
name: beam_PreCommit_PythonDocker (Run PythonDocker PreCommit 3.x)
5152
strategy:
5253
fail-fast: false
5354
matrix:

Diff for: .github/workflows/job_PreCommit_Python_Examples.yml

+1
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ concurrency:
4848

4949
jobs:
5050
beam_PreCommit_Python_Examples:
51+
name: beam_PreCommit_Python_Examples (Run Python_Examples PreCommit 3.x)
5152
strategy:
5253
fail-fast: false
5354
matrix:

0 commit comments

Comments
 (0)