From e76accd94f7eb4b3485aa010713e2d0bb9b3254e Mon Sep 17 00:00:00 2001 From: tyeth Date: Mon, 3 Jun 2024 21:58:10 +0100 Subject: [PATCH] Rename remote from fork to avoid conflict / debug idf issue --- .github/workflows/build-board-custom.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build-board-custom.yml b/.github/workflows/build-board-custom.yml index e479540be63a..aba0e3356cd2 100644 --- a/.github/workflows/build-board-custom.yml +++ b/.github/workflows/build-board-custom.yml @@ -44,19 +44,19 @@ jobs: - name: Checkout head / tag run: | git checkout ${{ inputs.version == 'latest' && 'HEAD' || inputs.version }} - - name: fork compatibility + - name: user-fork compatibility if: github.repository_owner != 'adafruit' run: | - git remote add fork https://github.com/${{github.repository}}.git - git fetch fork --filter=tree:0 + git remote add user-fork https://github.com/${{github.repository}}.git + git fetch user-fork --filter=tree:0 - name: branch compatibility if: inputs.branch != 'main' && inputs.version == 'latest' && github.repository_owner == 'adafruit' run: | git checkout ${{inputs.branch}} - - name: branch compatibility (fork) + - name: branch compatibility (user-fork) if: inputs.branch != '' && inputs.version == 'latest' && github.repository_owner != 'adafruit' run: | - git checkout -b fork-branch fork/${{inputs.branch}} + git checkout -b user-fork-branch user-fork/${{inputs.branch}} - name: Set up identifier if: inputs.debug || inputs.flags != '' run: |