Skip to content

Snowflake coverage fix #154

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Aug 7, 2025
Merged
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
15 changes: 13 additions & 2 deletions .github/workflows/update-snowflake-feature-coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,16 +40,27 @@ jobs:
mv coverage-features.md src/content/docs/snowflake/features/index.md
mv coverage-functions.md src/content/docs/snowflake/sql-functions.md

- name: Check for changes
id: check-for-changes
working-directory: localstack-docs
run: |
git add .
if git diff --staged --quiet; then
echo "diff-count=0" >> $GITHUB_OUTPUT
else
echo "diff-count=1" >> $GITHUB_OUTPUT
fi

- name: Create PR
uses: peter-evans/create-pull-request@v7
if: ${{ success() && steps.check-for-changes.outputs.diff-count != '0' && steps.check-for-changes.outputs.diff-count != '' }}
with:
path: src
path: localstack-docs
title: "Update function coverage documentation"
body: "Automated update of snowflake feature coverage docs"
branch: "snowflake-feature-coverage-updates"
author: "LocalStack Bot <[email protected]>"
committer: "LocalStack Bot <[email protected]>"
commit-message: "automated update of snowflake feature coverage docs"
token: ${{ secrets.PRO_ACCESS_TOKEN }}
reviewers: hovaesco, harshcasper
reviewers: hovaesco, quetzalliwrites