Skip to content

Commit 368368d

Browse files
committed
drop-pacman-package: also target UCRT64
In git-for-windows/git-sdk-64#117, I am starting the MINGW64 -> UCRT64 migration, and therefore I want to target that branch, too, when uninstalling packages. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
1 parent efecf1a commit 368368d

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

.github/workflows/drop-pacman-package.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,9 @@ jobs:
2525
sdk:
2626
- name: git-sdk-64
2727
mingw-package-prefix: mingw-w64-x86_64
28+
- name: git-sdk-64
29+
ref: ucrt64
30+
mingw-package-prefix: mingw-w64-ucrt-x86_64
2831
- name: git-sdk-arm64
2932
mingw-package-prefix: mingw-w64-clang-aarch64
3033
- name: git-sdk-32
@@ -50,6 +53,7 @@ jobs:
5053
persist-credentials: true
5154
repository: ${{ github.repository_owner }}/${{ matrix.sdk.name }}
5255
token: ${{ steps.sdk-repo-token.outputs.token }}
56+
ref: ${{ matrix.sdk.ref }}
5357
- name: use the SDK's Bash and git.exe
5458
run: "usr\\bin\\bash.exe -lc 'cygpath -aw /usr/bin >>$GITHUB_PATH && cygpath -aw /cmd >>$GITHUB_PATH'"
5559
- name: Remove ${{ env.PACKAGE }}
@@ -92,7 +96,7 @@ jobs:
9296
gh pr create \
9397
--fill \
9498
--head "$branch" \
95-
--base main 2>&1;
99+
--base ${{ matrix.sdk.ref || 'main' }} 2>&1;
96100
echo $? >/tmp/exit.status
97101
) |
98102
tee -a /tmp/pr-create-output.txt &&

0 commit comments

Comments
 (0)