chore(deps): update agent skills (#5223) #4924
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 | |
| on: | |
| workflow_dispatch: | |
| # Auto-release: every push to main runs semantic-release (create-release.yaml). | |
| # Its commit-analyzer cuts a new vX.Y.Z tag only when the merged commits warrant | |
| # one (fix: → patch, feat: → minor, BREAKING CHANGE/! → major) and no-ops otherwise | |
| # (chore:/docs:/ci:). The tag push then triggers cd.yaml's GoReleaser publish. | |
| push: | |
| branches: | |
| - main | |
| concurrency: | |
| group: "Release" | |
| cancel-in-progress: false | |
| permissions: | |
| contents: read | |
| jobs: | |
| release: | |
| name: 🎉 Create Release | |
| uses: devantler-tech/reusable-workflows/.github/workflows/create-release.yaml@7d3a08e3cc284c6fa14a056d5df7702ec0978d59 # v5.5.10 | |
| secrets: | |
| APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }} |