Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@ jobs:
- run: npm run typecheck

schema-check:
if: ${{ !contains(github.event.pull_request.labels.*.name, 'release') }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/pr-title.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@ jobs:
must start with a lowercase letter.
Example: "feat: add deploy command"
validateSingleCommit: false
# Skip validation for bot/dependency PRs
# Skip validation for bot/dependency/release PRs
ignoreLabels: |
bot
dependencies
release
1 change: 1 addition & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,7 @@ jobs:
gh pr create \
--base "$BASE_BRANCH" \
--head "$BRANCH_NAME" \
--label release \
--title "Release v$NEW_VERSION" \
--body "## Release v$NEW_VERSION

Expand Down
Loading