chore(deps): lock file maintenance #1743
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: Conventional Commits Check | |
| # Enforces the conventional-commits PR title format (feat:, fix:, chore:, | |
| # docs:, etc.) so the SDK's release-version-bump workflow can categorise | |
| # entries when it generates the CHANGELOG.md after each merge to main. | |
| on: | |
| pull_request: | |
| types: [opened, synchronize, labeled, reopened] | |
| branches: | |
| - main | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| actions: read | |
| security-events: write | |
| jobs: | |
| conventional-commits: | |
| uses: atlanhq/application-sdk/.github/workflows/commits.yaml@main |