Skip to content

Commit

Permalink
Correct checkout step name in workflows (#231)
Browse files Browse the repository at this point in the history
*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]>
  • Loading branch information
srprash and thpierce authored Aug 23, 2024
1 parent e4f5b28 commit 0aa7eb4
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
staging_repository: ${{ steps.python_output.outputs.stagingRepository}}
staging_wheel_file: ${{ steps.staging_wheel_output.outputs.STAGING_WHEEL}}
steps:
- name: Checkout Contrib Repo @ SHA - ${{ github.sha }}
- name: Checkout Repo @ SHA - ${{ github.sha }}
uses: actions/checkout@v4

- name: Get Python Distro Output
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pr_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
steps:
- name: Checkout Contrib Repo @ SHA - ${{ github.sha }}
- name: Checkout Repo @ SHA - ${{ github.sha }}
uses: actions/checkout@v4

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

- name: Install libsnappy-dev
Expand All @@ -64,7 +64,7 @@ jobs:
spotless:
runs-on: ubuntu-latest
steps:
- name: Checkout Contrib Repo @ SHA - ${{ github.sha }}
- name: Checkout Repo @ SHA - ${{ github.sha }}
uses: actions/checkout@v4

- name: Gradle validation
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
environment: Release
runs-on: ubuntu-latest
steps:
- name: Checkout Contrib Repo @ SHA - ${{ github.sha }}
- name: Checkout Repo @ SHA - ${{ github.sha }}
uses: actions/checkout@v4

- name: Build Wheel and Image Files
Expand Down

0 comments on commit 0aa7eb4

Please sign in to comment.