We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f3a865e commit 60767c9Copy full SHA for 60767c9
.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,12 @@ 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
+ run: |
51
+ cat src/content/docs/aws/tooling/localstack-cli.md
52
53
- name: Check for changes
54
id: check-for-changes
0 commit comments