Skip to content

Commit

Permalink
Another attempt at pulling user branch and fork
Browse files Browse the repository at this point in the history
  • Loading branch information
Skptak committed Jan 2, 2024
1 parent ab968f7 commit 2a8ed4f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/kernel-demos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -156,8 +156,8 @@ jobs:

ARM-GCC:
env:
prBranchName: '${{ github.event.pull_request.base.label }}'
prUserName: '${{ github.event.pull_request.base.user }}'
prBranchName: ${{ github.event.pull_request.base.label }}
prUserName: ${{ github.event.pull_request.base.user }}
name: GNU ARM Toolchain
strategy:
fail-fast: false
Expand Down Expand Up @@ -217,7 +217,7 @@ jobs:
fetch-depth: 1

- name: Checkout ${{ env.prUserName }}/FreeRTOS:main Repository
if: ${{ steps.checkout-user-fork-and-branch.outcome }} == 'failure'
if: steps.checkout-user-fork-and-branch.outcome == 'failure'
id: checkout-user-fork
continue-on-error: true
uses: actions/checkout@v3
Expand All @@ -228,7 +228,7 @@ jobs:
fetch-depth: 1

- name: Checkout FreeRTOS/FreeRTOS:main Repository
if: ( ${{ steps.checkout-user-fork.outcome }} == 'failure' )
if: steps.checkout-user-fork.outcome == 'failure'
uses: actions/checkout@v3
with:
sparse-checkout: 'FreeRTOS/Demo'
Expand Down

0 comments on commit 2a8ed4f

Please sign in to comment.