From 0aa7eb41f10d238cbf9801ac94b4b3f722391dfb Mon Sep 17 00:00:00 2001 From: Prashant Srivastava <50466688+srprash@users.noreply.github.com> Date: Fri, 23 Aug 2024 16:59:38 -0700 Subject: [PATCH] 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 --- .github/workflows/main_build.yml | 2 +- .github/workflows/pr_build.yml | 6 +++--- .github/workflows/release_build.yml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/main_build.yml b/.github/workflows/main_build.yml index 889887f68..91a90f19d 100644 --- a/.github/workflows/main_build.yml +++ b/.github/workflows/main_build.yml @@ -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 diff --git a/.github/workflows/pr_build.yml b/.github/workflows/pr_build.yml index a05700197..d1aaaffd0 100644 --- a/.github/workflows/pr_build.yml +++ b/.github/workflows/pr_build.yml @@ -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 @@ -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 @@ -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 diff --git a/.github/workflows/release_build.yml b/.github/workflows/release_build.yml index 2f8236374..725d97a3c 100644 --- a/.github/workflows/release_build.yml +++ b/.github/workflows/release_build.yml @@ -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