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
8 changes: 4 additions & 4 deletions .github/workflows/test-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:
create-release-pr:
runs-on: ubuntu-latest
timeout-minutes: 10
if: "github.event_name == 'push' && github.ref == 'refs/heads/main' && !startsWith(github.event.head_commit.message, 'chore(release): notion-snowflake-mcp')"
if: "github.event_name == 'push' && github.ref == 'refs/heads/main' && !contains(github.event.head_commit.message, 'chore(release): notion-snowflake-mcp')"
permissions:
contents: write
pull-requests: write
Expand Down Expand Up @@ -115,7 +115,7 @@ jobs:
echo "branch=$BRANCH_NAME" >> $GITHUB_OUTPUT

# Commit the version bump
git commit -m "chore(release): bump version"
git commit -m "chore(release): notion-snowflake-mcp"

# Push the branch (force push to update if branch already exists)
git push -f origin "$BRANCH_NAME"
Expand All @@ -126,7 +126,7 @@ jobs:
if: steps.release.outputs.has_changes == 'true'
run: |
gh pr create \
--title "chore(notion-snowflake-mcp): release version" \
--title "chore(release): notion-snowflake-mcp" \
--body "Automated version bump by semantic-release" \
--base main \
--head "${{ steps.release.outputs.branch }}"
Expand All @@ -136,7 +136,7 @@ jobs:
publish:
runs-on: ubuntu-latest
timeout-minutes: 10
if: "github.event_name == 'push' && github.ref == 'refs/heads/main' && startsWith(github.event.head_commit.message, 'chore(release): notion-snowflake-mcp')"
if: "github.event_name == 'push' && github.ref == 'refs/heads/main' && contains(github.event.head_commit.message, 'chore(release): notion-snowflake-mcp')"
permissions:
contents: write
steps:
Expand Down
2 changes: 1 addition & 1 deletion mcp_server_snowflake/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
# Used to quantify Snowflake usage
server_name = "mcp-server-snowflake"
tag_major_version = 1
tag_minor_version = 3
tag_minor_version = 4
query_tag = {"origin": "sf_sit", "name": "mcp_server"}

# Default query comment template - matches dbt query tag format for observability
Expand Down
Loading