Skip to content
Open
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
11 changes: 10 additions & 1 deletion .github/workflows/update-snowflake-feature-coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Update function coverage docs

on:
schedule:
# At 00:00 on Sunday.
# "At 00:00 on Sunday."
- cron: "0 0 * * 0"
workflow_dispatch:

Expand All @@ -21,6 +21,11 @@ jobs:
with:
python-version: '3.10'

- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'

- name: Checkout private tools
uses: actions/checkout@v4
with:
Expand All @@ -43,6 +48,10 @@ jobs:
mv ../snowflake/coverage-functions.md src/content/docs/snowflake/sql-functions.md
mv ../snowflake/coverage-restapi.md src/content/docs/snowflake/features/rest-api-endpoints.md

- name: Parse SQL functions to JSON
working-directory: localstack-docs
run: node scripts/snowflake/parse-sql-functions.mjs

- name: Check for changes
id: check-for-changes
working-directory: localstack-docs
Expand Down
Loading