Skip to content

Commit 695dd41

Browse files
authored
Fix comment phrase and name (#29052)
1 parent 4f7763b commit 695dd41

86 files changed

Lines changed: 127 additions & 128 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ jobs:
8585
- name: Setup repository
8686
uses: ./.github/actions/setup-action
8787
with:
88-
comment_phrase: ${{matrix.job_phrase}}
88+
comment_phrase: ${{ matrix.job_phrase }}
8989
github_token: ${{ secrets.GITHUB_TOKEN }}
9090
github_job: ${{ matrix.job_name }} (${{ matrix.job_phrase }} ${{ matrix.python_version }})
9191
```

.github/workflows/beam_CancelStaleDataflowJobs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ permissions:
5050

5151
jobs:
5252
beam_CancelStaleDataflowJobs:
53-
name: ${{matrix.job_name}} (${{matrix.job_phrase}})
53+
name: ${{ matrix.job_name }} (${{ matrix.job_phrase }})
5454
runs-on: [self-hosted, ubuntu-20.04, main]
5555
timeout-minutes: 120
5656
strategy:

.github/workflows/beam_CleanUpGCPResources.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ permissions:
5050

5151
jobs:
5252
beam_CleanUpGCPResources:
53-
name: ${{matrix.job_name}} (${{matrix.job_phrase}})
53+
name: ${{ matrix.job_name }} (${{ matrix.job_phrase }})
5454
runs-on: [self-hosted, ubuntu-20.04, main]
5555
timeout-minutes: 100
5656
strategy:

.github/workflows/beam_CleanUpPrebuiltSDKImages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ permissions:
5050

5151
jobs:
5252
beam_CleanUpPrebuiltSDKImages:
53-
name: ${{matrix.job_name}} (${{matrix.job_phrase}})
53+
name: ${{ matrix.job_name }} (${{ matrix.job_phrase }})
5454
runs-on: [self-hosted, ubuntu-20.04, main]
5555
timeout-minutes: 100
5656
strategy:

.github/workflows/beam_LoadTests_Java_CoGBK_Dataflow_V2_Batch_JavaVersions.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
contains(github.event.comment.body, 'CoGBK Dataflow V2 Batch'))
5858
runs-on: [self-hosted, ubuntu-20.04, main]
5959
timeout-minutes: 720
60-
name: ${{matrix.job_name}} (${{matrix.job_phrase_1}} ${{matrix.java_version}} ${{matrix.job_phrase_2}})
60+
name: ${{ matrix.job_name }} (${{ matrix.job_phrase_1 }} ${{ matrix.java_version }} ${{ matrix.job_phrase_2 }})
6161
strategy:
6262
fail-fast: false
6363
matrix:
@@ -70,9 +70,9 @@ jobs:
7070
- name: Setup repository
7171
uses: ./.github/actions/setup-action
7272
with:
73-
comment_phrase: ${{ matrix.job_phrase_1 }} ${{matrix.java_version}} ${{ matrix.job_phrase_2 }}
73+
comment_phrase: ${{ matrix.job_phrase_1 }} ${{ matrix.java_version }} ${{ matrix.job_phrase_2 }}
7474
github_token: ${{ secrets.GITHUB_TOKEN }}
75-
github_job: ${{ matrix.job_name }} ${{ matrix.job_phrase_1 }} ${{matrix.java_version}} ${{ matrix.job_phrase_2 }}
75+
github_job: ${{ matrix.job_name }} (${{ matrix.job_phrase_1 }} ${{ matrix.java_version }} ${{ matrix.job_phrase_2 }})
7676
- name: Setup environment
7777
uses: ./.github/actions/setup-environment-action
7878
with:

.github/workflows/beam_LoadTests_Java_CoGBK_Dataflow_V2_Streaming_JavaVersions.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
contains(github.event.comment.body, 'CoGBK Dataflow V2 Streaming'))
5858
runs-on: [self-hosted, ubuntu-20.04, main]
5959
timeout-minutes: 240
60-
name: ${{matrix.job_name}} (${{matrix.job_phrase_1}} ${{matrix.java_version}} ${{matrix.job_phrase_2}})
60+
name: ${{ matrix.job_name }} (${{ matrix.job_phrase_1 }} ${{ matrix.java_version }} ${{ matrix.job_phrase_2 }})
6161
strategy:
6262
fail-fast: false
6363
matrix:
@@ -70,9 +70,9 @@ jobs:
7070
- name: Setup repository
7171
uses: ./.github/actions/setup-action
7272
with:
73-
comment_phrase: ${{ matrix.job_phrase_1 }} ${{matrix.java_version}} ${{ matrix.job_phrase_2 }}
73+
comment_phrase: ${{ matrix.job_phrase_1 }} ${{ matrix.java_version }} ${{ matrix.job_phrase_2 }}
7474
github_token: ${{ secrets.GITHUB_TOKEN }}
75-
github_job: ${{ matrix.job_name }} ${{ matrix.job_phrase_1 }} ${{matrix.java_version}} ${{ matrix.job_phrase_2 }}
75+
github_job: ${{ matrix.job_name }} (${{ matrix.job_phrase_1 }} ${{ matrix.java_version }} ${{ matrix.job_phrase_2 }})
7676
- name: Setup environment
7777
uses: ./.github/actions/setup-environment-action
7878
with:

.github/workflows/beam_PerformanceTests_WordCountIT_PythonVersions.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
endswith(github.event.comment.body, 'WordCountIT Performance Test'))
5757
runs-on: [self-hosted, ubuntu-20.04, main]
5858
timeout-minutes: 100
59-
name: ${{ matrix.job_name }} (${{ matrix.job_phrase_1 }}${{matrix.python_version}} ${{ matrix.job_phrase_2 }})
59+
name: ${{ matrix.job_name }} (${{ matrix.job_phrase_1 }} ${{ matrix.python_version }} ${{ matrix.job_phrase_2 }})
6060
strategy:
6161
fail-fast: false
6262
matrix:
@@ -69,13 +69,13 @@ jobs:
6969
- name: Setup repository
7070
uses: ./.github/actions/setup-action
7171
with:
72-
comment_phrase: ${{ matrix.job_phrase_1 }}${{matrix.python_version}} ${{ matrix.job_phrase_2 }}
72+
comment_phrase: ${{ matrix.job_phrase_1 }} ${{ matrix.python_version }} ${{ matrix.job_phrase_2 }}
7373
github_token: ${{ secrets.GITHUB_TOKEN }}
74-
github_job: ${{ matrix.job_name }} (${{ matrix.job_phrase_1 }}${{matrix.python_version}} ${{ matrix.job_phrase_2 }})
74+
github_job: ${{ matrix.job_name }} (${{ matrix.job_phrase_1 }} ${{ matrix.python_version }} ${{ matrix.job_phrase_2 }})
7575
- name: Setup environment
7676
uses: ./.github/actions/setup-environment-action
7777
with:
78-
python-version: ${{matrix.python_version}}
78+
python-version: ${{ matrix.python_version }}
7979
- name: Set PY_VER_CLEAN
8080
id: set_py_ver_clean
8181
run: |

.github/workflows/beam_PostCommit_Java.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ env:
5050

5151
jobs:
5252
beam_PostCommit_Java:
53-
name: ${{matrix.job_name}} (${{matrix.job_phrase}})
53+
name: ${{ matrix.job_name }} (${{ matrix.job_phrase }})
5454
runs-on: [self-hosted, ubuntu-20.04, main]
5555
timeout-minutes: 240
5656
strategy:

.github/workflows/beam_PostCommit_Java_Avro_Versions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ env:
5050

5151
jobs:
5252
beam_PostCommit_Java_Avro_Versions:
53-
name: ${{matrix.job_name}} (${{matrix.job_phrase}})
53+
name: ${{ matrix.job_name }} (${{ matrix.job_phrase }})
5454
runs-on: [self-hosted, ubuntu-20.04, main]
5555
timeout-minutes: 240
5656
strategy:

.github/workflows/beam_PostCommit_Java_BigQueryEarlyRollout.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ env:
5050

5151
jobs:
5252
beam_PostCommit_Java_BigQueryEarlyRollout:
53-
name: ${{matrix.job_name}} (${{matrix.job_phrase}})
53+
name: ${{ matrix.job_name }} (${{ matrix.job_phrase }})
5454
runs-on: [self-hosted, ubuntu-20.04, main]
5555
timeout-minutes: 100
5656
strategy:

0 commit comments

Comments
 (0)