We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 322df42 commit fb2aec6Copy full SHA for fb2aec6
.github/workflows/upgradeable.yml
@@ -18,10 +18,12 @@ jobs:
18
token: ${{ secrets.GH_TOKEN_UPGRADEABLE }}
19
- name: Fetch current non-upgradeable branch
20
run: |
21
- git fetch "https://github.com/${{ github.repository }}.git" "$REF"
+ git fetch "$REMOTE" master # Fetch default branch first for patch to apply cleanly
22
+ git fetch "$REMOTE" "$REF"
23
git checkout FETCH_HEAD
24
env:
25
REF: ${{ github.ref }}
26
+ REMOTE: https://github.com/${{ github.repository }}.git
27
- name: Set up environment
28
uses: ./.github/actions/setup
29
- run: bash scripts/git-user-config.sh
0 commit comments