|
|
@ -18,10 +18,12 @@ jobs: |
|
|
|
token: ${{ secrets.GH_TOKEN_UPGRADEABLE }} |
|
|
|
token: ${{ secrets.GH_TOKEN_UPGRADEABLE }} |
|
|
|
- name: Fetch current non-upgradeable branch |
|
|
|
- name: Fetch current non-upgradeable branch |
|
|
|
run: | |
|
|
|
run: | |
|
|
|
git fetch "https://github.com/${{ github.repository }}.git" "$REF" |
|
|
|
git fetch "$REMOTE" master # Fetch default branch first for patch to apply cleanly |
|
|
|
|
|
|
|
git fetch "$REMOTE" "$REF" |
|
|
|
git checkout FETCH_HEAD |
|
|
|
git checkout FETCH_HEAD |
|
|
|
env: |
|
|
|
env: |
|
|
|
REF: ${{ github.ref }} |
|
|
|
REF: ${{ github.ref }} |
|
|
|
|
|
|
|
REMOTE: https://github.com/${{ github.repository }}.git |
|
|
|
- name: Set up environment |
|
|
|
- name: Set up environment |
|
|
|
uses: ./.github/actions/setup |
|
|
|
uses: ./.github/actions/setup |
|
|
|
- run: bash scripts/git-user-config.sh |
|
|
|
- run: bash scripts/git-user-config.sh |
|
|
|