Skip to content

Commit 8fa3e8b

Browse files
committed
Update workflow names
1 parent 13a4a13 commit 8fa3e8b

9 files changed

Lines changed: 15 additions & 15 deletions

.github/workflows/ci_build_library.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ concurrency:
4545
jobs:
4646
find-changes:
4747
name: Find changed files
48-
uses: ./.github/workflows/reusable_find_changes.yaml
48+
uses: ./.github/workflows/_find_changes.yaml
4949
secrets: inherit
5050

5151
build-wheels:
@@ -121,7 +121,7 @@ jobs:
121121
- if: matrix.conf.os != 'windows-2025'
122122
name: Run the build and test script (non-Windows case)
123123
env:
124-
# SHELLOPTS is used by Bash. Add xtrace when doing manual debug runs.
124+
# Add xtrace to SHELLOPTS for all Bash scripts when doing debug runs.
125125
SHELLOPTS: ${{inputs.debug && 'xtrace' || '' }}
126126
run: dev_tools/test_libs.sh ${{env.use-verbose && '--config=verbose'}}
127127

.github/workflows/ci_build_wheels.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,15 +45,15 @@ concurrency:
4545
jobs:
4646
find-changes:
4747
name: Find changed files
48-
uses: ./.github/workflows/reusable_find_changes.yaml
48+
uses: ./.github/workflows/_find_changes.yaml
4949
secrets: inherit
5050

5151
build-wheels:
5252
# For efficiency, skip this workflow if there were no code file changes.
5353
if: needs.find-changes.outputs.code || github.event_name == 'workflow_dispatch'
5454
name: Build & test wheels
5555
needs: find-changes
56-
uses: ./.github/workflows/reusable_build_wheels.yaml
56+
uses: ./.github/workflows/_build_wheels.yaml
5757
secrets: inherit
5858
with:
5959
debug: ${{inputs.debug == true}}

.github/workflows/ci_docker_tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ concurrency:
4545
jobs:
4646
find-changes:
4747
name: Find changed files
48-
uses: ./.github/workflows/reusable_find_changes.yaml
48+
uses: ./.github/workflows/_find_changes.yaml
4949
secrets: inherit
5050

5151
build-and-test:

.github/workflows/ci_format_checks.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
name: 'CI: lint & format checks'
15+
name: 'CI: check code format'
1616
run-name: Test with linters and formatters
1717

1818
on:
@@ -45,7 +45,7 @@ concurrency:
4545
jobs:
4646
find-changes:
4747
name: Find changed files
48-
uses: ./.github/workflows/reusable_find_changes.yaml
48+
uses: ./.github/workflows/_find_changes.yaml
4949
secrets: inherit
5050

5151
check-format:

.github/workflows/ci_hardware_options.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
name: 'CI: hardware options tests'
15+
name: 'CI: test with different hardware options'
1616
run-name: Test with instruction set extensions and parallelism
1717

1818
on:
@@ -45,7 +45,7 @@ concurrency:
4545
jobs:
4646
find-changes:
4747
name: Find changed files
48-
uses: ./.github/workflows/reusable_find_changes.yaml
48+
uses: ./.github/workflows/_find_changes.yaml
4949
secrets: inherit
5050

5151
test-options:

.github/workflows/ci_sanitizer_tests.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
name: 'CI: sanitizer tests'
15+
name: 'CI: run sanitizer tests'
1616
run-name: Test with address and memory sanitizers
1717

1818
on:
@@ -45,7 +45,7 @@ concurrency:
4545
jobs:
4646
find-changes:
4747
name: Find changed files
48-
uses: ./.github/workflows/reusable_find_changes.yaml
48+
uses: ./.github/workflows/_find_changes.yaml
4949
secrets: inherit
5050

5151
sanitizer-tests:

.github/workflows/ci_tcmalloc_test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
name: 'CI: TCMalloc test'
15+
name: 'CI: run TCMalloc test'
1616
run-name: Test with TCMalloc (thread-caching malloc)
1717

1818
on:
@@ -45,7 +45,7 @@ concurrency:
4545
jobs:
4646
find-changes:
4747
name: Find changed files
48-
uses: ./.github/workflows/reusable_find_changes.yaml
48+
uses: ./.github/workflows/_find_changes.yaml
4949
secrets: inherit
5050

5151
tcmalloc-test:

.github/workflows/pr-labeler.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
# getting applied, check the run summary page for errors.
2020
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2121

22-
name: Pull request labeler
22+
name: Label pull requests
2323
run-name: >-
2424
Label pull request ${{github.event.pull_request.number}} by ${{github.actor}}
2525

.github/workflows/release_wheels.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ permissions: read-all
3131
jobs:
3232
build-wheels:
3333
name: Build and save wheels
34-
uses: ./.github/workflows/reusable_build_wheels.yaml
34+
uses: ./.github/workflows/_build_wheels.yaml
3535
secrets: inherit
3636
with:
3737
upload: true

0 commit comments

Comments
 (0)