.github/workflows/changelog.yml #1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Release and Update Website Changelog | ||
| on: | ||
| push: | ||
| tags: | ||
| - "v*.*.*" | ||
| workflow_dispatch: | ||
| inputs: | ||
| test_version: | ||
| description: "The fake version to test (e.g., 99.9.9)" | ||
| required: true | ||
| default: "99.9.9" | ||
| jobs: | ||
| release: | ||
| uses: sqlitecloud/changelog-action/.github/workflows/action.yml@main | ||
|
Check failure on line 16 in .github/workflows/changelog.yml
|
||
| with: | ||
| name: "SQLite-Sync" | ||
| create_release: false | ||
| secrets: | ||
| personal_access_token: ${{ secrets.WEBSITE_REPO_PAT }} | ||