feat: improve session titles, cap threads, and arch UI releases #39
Workflow file for this run
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: PR title | |
| on: | |
| pull_request: | |
| types: [opened, edited, synchronize, reopened] | |
| # Token needs read access to the PR payload; some orgs tighten defaults. | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| statuses: write | |
| jobs: | |
| lint: | |
| name: conventional title | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: amannn/action-semantic-pull-request@v5 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| with: | |
| types: | | |
| feat | |
| fix | |
| docs | |
| style | |
| refactor | |
| perf | |
| test | |
| build | |
| ci | |
| chore | |
| adapter | |
| revert | |
| requireScope: false | |
| ignoreLabels: | | |
| dependencies | |
| dependabot | |
| wip: true |