Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .github/workflows/sync-dataconnect-download-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ jobs:
python3 .github/scripts/sync_dataconnect_version.py --latest-tag "$LATEST_TAG"

- name: Create pull request when version changed
id: cpr
uses: peter-evans/create-pull-request@22a9089034f40e5a961c8808d113e2c98fb63676 # v7
with:
branch: chore/sync-dataconnect-download-version
Expand All @@ -59,3 +60,10 @@ jobs:
- [ ] Run this workflow via workflow_dispatch
- [ ] Confirm PR is created only when latest tag differs
- [ ] Verify generated URLs on `/download-data-connect` point to the new release

- name: Enable auto-merge for sync PR
if: steps.cpr.outputs.pull-request-number != ''
env:
GH_TOKEN: ${{ github.token }}
run: |
gh pr merge "${{ steps.cpr.outputs.pull-request-number }}" --auto --squash --delete-branch
2 changes: 1 addition & 1 deletion connect/src/config/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export type DownloadAsset = {
comingSoon?: boolean;
};

const DOWNLOAD_VERSION = "0.7.27";
const DOWNLOAD_VERSION = "0.7.29";
const DATA_CONNECT_GITHUB_RELEASES_URL =
"https://github.com/vana-com/data-connect/releases";

Expand Down
Loading