Skip to content

Commit

Permalink
Log out some values & make sure it's up to date
Browse files Browse the repository at this point in the history
  • Loading branch information
danielle-casella-adams committed Mar 29, 2024
1 parent c431f84 commit 1a5537c
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions .github/workflows/build-and-review-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ on:

jobs:
setup-build-and-review:
if: 1 == 2
runs-on: ubuntu-latest
outputs:
HAS_SOURCE_CODE_CHANGES: ${{ steps.source-code.outputs.HAS_CHANGES }}
Expand Down Expand Up @@ -68,6 +69,7 @@ jobs:
run: echo "The next action version will be - ${{ steps.version.outputs.NEXT_VERSION }}"

build-and-review-pr:
if: 1 == 2
runs-on: ubuntu-latest
needs: [setup-build-and-review]

Expand Down Expand Up @@ -251,7 +253,7 @@ jobs:

- name: Setup - Checkout testing repo in the root directory
if: always()
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: main
repository: ${{ env.TESTING_REPO }}
Expand All @@ -270,7 +272,7 @@ jobs:
echo -e "\nRoot directory contents:"
ls -a
echo -e "\ngit-version-lite contents:"
echo -e "\ngit-version-lite (gvl) contents:"
ls -a ./gvl
#--------------------------------------
Expand Down Expand Up @@ -326,7 +328,11 @@ jobs:
run: echo ""

- name: When a repo has all of its tags locally
run: git fetch -t
run: |
git rev-parse --abbrev-ref HEAD
git pull
git fetch -t
- name: And a new version is requested with fallback-to-no-prefix set
if: always()
Expand Down Expand Up @@ -381,6 +387,7 @@ jobs:
./gvl/test/assert-values-match.sh --name "NEXT_MAJOR_VERSION_NO_PREFIX" --expected "$major" --actual "${{ env.NEXT_MAJOR_VERSION_NO_PREFIX }}"
test-no-base-commits:
if: 1 == 2
runs-on: ubuntu-latest

env:
Expand Down Expand Up @@ -583,6 +590,7 @@ jobs:
run: echo ""

test-incrementing:
if: 1 == 2
runs-on: ubuntu-latest

env:
Expand Down

0 comments on commit 1a5537c

Please sign in to comment.