We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d871eb4 commit 2a28552Copy full SHA for 2a28552
1 file changed
.github/workflows/changelog.yml
@@ -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