Skip to content

Commit f650931

Browse files
authored
Avoid hardcoding remote names in the sync jobs (#33)
Use new version of https://github.com/paradedb/actions to avoid hardcoding remote names.
1 parent 115adda commit f650931

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/sync-promote-branch.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ concurrency:
1919

2020
jobs:
2121
call-promote:
22-
uses: paradedb/actions/.github/workflows/reusable-promote.yml@v4
22+
uses: paradedb/actions/.github/workflows/reusable-promote.yml@v5
2323
with:
2424
branch_name: ${{ inputs.branch_name }}
2525
approvers: "philippemnoel,rebasedming,stuhood,mdashti"

.github/workflows/sync-upstream-rebase.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ concurrency:
1717

1818
jobs:
1919
call-rebase:
20-
uses: paradedb/actions/.github/workflows/reusable-rebase.yml@v4
20+
uses: paradedb/actions/.github/workflows/reusable-rebase.yml@v5
2121
with:
2222
github_app_client_id: ${{ vars.PARADEDB_GITHUB_APP_CLIENT_ID }}
2323
secrets:

scripts/sync-upstream.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export UPSTREAM_BRANCH="main"
1414

1515
# 2. Define the URL to the centralized script
1616
# Using the raw content URL from the central repository
17-
CORE_SCRIPT_URL="https://raw.githubusercontent.com/paradedb/actions/v4/scripts/sync-core.sh"
17+
CORE_SCRIPT_URL="https://raw.githubusercontent.com/paradedb/actions/v5/scripts/sync-core.sh"
1818

1919
# 3. Download and source the core logic as an API
2020
TMP_SCRIPT=$(mktemp)

0 commit comments

Comments
 (0)