Skip to content

Commit 0aa7eb4

Browse files
srprashthpierce
andauthored
Correct checkout step name in workflows (#231)
*Description of changes:* - The `name: Checkout Contrib Repo @ SHA - ${{ github.sha }}` is confusing since we are checking out the current repo which is not "Contrib". So we should just call it "Checkout Repo". By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice. Co-authored-by: Thomas Pierce <[email protected]>
1 parent e4f5b28 commit 0aa7eb4

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/main_build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
staging_repository: ${{ steps.python_output.outputs.stagingRepository}}
3131
staging_wheel_file: ${{ steps.staging_wheel_output.outputs.STAGING_WHEEL}}
3232
steps:
33-
- name: Checkout Contrib Repo @ SHA - ${{ github.sha }}
33+
- name: Checkout Repo @ SHA - ${{ github.sha }}
3434
uses: actions/checkout@v4
3535

3636
- name: Get Python Distro Output

.github/workflows/pr_build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
matrix:
1818
python-version: ["3.8", "3.9", "3.10", "3.11"]
1919
steps:
20-
- name: Checkout Contrib Repo @ SHA - ${{ github.sha }}
20+
- name: Checkout Repo @ SHA - ${{ github.sha }}
2121
uses: actions/checkout@v4
2222

2323
- name: Build Wheel and Image Files
@@ -43,7 +43,7 @@ jobs:
4343
matrix:
4444
tox-environment: ["spellcheck", "lint"]
4545
steps:
46-
- name: Checkout Contrib Repo @ SHA - ${{ github.sha }}
46+
- name: Checkout Repo @ SHA - ${{ github.sha }}
4747
uses: actions/checkout@v4
4848

4949
- name: Install libsnappy-dev
@@ -64,7 +64,7 @@ jobs:
6464
spotless:
6565
runs-on: ubuntu-latest
6666
steps:
67-
- name: Checkout Contrib Repo @ SHA - ${{ github.sha }}
67+
- name: Checkout Repo @ SHA - ${{ github.sha }}
6868
uses: actions/checkout@v4
6969

7070
- name: Gradle validation

.github/workflows/release_build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
environment: Release
2525
runs-on: ubuntu-latest
2626
steps:
27-
- name: Checkout Contrib Repo @ SHA - ${{ github.sha }}
27+
- name: Checkout Repo @ SHA - ${{ github.sha }}
2828
uses: actions/checkout@v4
2929

3030
- name: Build Wheel and Image Files

0 commit comments

Comments
 (0)