We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f3a865e commit 1598df9Copy full SHA for 1598df9
.github/workflows/update-cli-docs.yml
@@ -1,6 +1,9 @@
1
name: Update LocalStack CLI Docs
2
3
on:
4
+ pull_request:
5
+ branches:
6
+ - main
7
schedule:
8
# Run on the 15th of every month at 00:00 UTC
9
- cron: "0 0 15 * *"
@@ -40,6 +43,13 @@ jobs:
40
43
working-directory: docs
41
44
run: |
42
45
python3 scripts/generate_cli_docs.py
46
+ env:
47
+ LOCALSTACK_AUTH_TOKEN: ${{ secrets.LOCALSTACK_AUTH_TOKEN }}
48
+
49
+ - name: Test
50
+ working-directory: docs
51
+ run: |
52
+ cat src/content/docs/aws/tooling/localstack-cli.md
53
54
- name: Check for changes
55
id: check-for-changes
0 commit comments