Skip to content

Commit 2a28552

Browse files
authored
Add changelog workflow for releases and updates
1 parent d871eb4 commit 2a28552

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

.github/workflows/changelog.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Release and Update Website Changelog
2+
3+
on:
4+
push:
5+
tags:
6+
- "v*.*.*"
7+
workflow_dispatch:
8+
inputs:
9+
test_version:
10+
description: "The fake version to test (e.g., 99.9.9)"
11+
required: true
12+
default: "99.9.9"
13+
14+
jobs:
15+
release:
16+
uses: sqlitecloud/changelog-action/.github/workflows/action.yml@main
17+
with:
18+
name: "SQLite-Sync"
19+
create_release: false
20+
secrets:
21+
personal_access_token: ${{ secrets.WEBSITE_REPO_PAT }}

0 commit comments

Comments
 (0)