From 3bff098fb34c8934226e777aefdd1d8b17a71478 Mon Sep 17 00:00:00 2001 From: Gabor Szarnyas Date: Sat, 4 Nov 2023 18:14:47 +0100 Subject: [PATCH] CI: Fix backlink for 'High Priority' issues --- .github/workflows/HighPriorityIssues.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/HighPriorityIssues.yml b/.github/workflows/HighPriorityIssues.yml index 1f4dbb0f..661eb9af 100644 --- a/.github/workflows/HighPriorityIssues.yml +++ b/.github/workflows/HighPriorityIssues.yml @@ -32,5 +32,5 @@ jobs: - name: Create or label issue run: | if [ "$MIRROR_ISSUE_NUMBER" == "" ]; then - gh issue create --repo duckdblabs/duckdb-internal --label "Rust" --label "High Priority" --title "$TITLE_PREFIX - $PUBLIC_ISSUE_TITLE" --body "See https://github.com/duckdb/duckdb/issues/${{ github.event.issue.number }}" + gh issue create --repo duckdblabs/duckdb-internal --label "Rust" --label "High Priority" --title "$TITLE_PREFIX - $PUBLIC_ISSUE_TITLE" --body "See https://github.com/duckdb/duckdb-rs/issues/${{ github.event.issue.number }}" fi