We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2b70b9e + d296811 commit 1cf2e73Copy full SHA for 1cf2e73
.github/workflows/validate_doc_gen_metadata.yaml
@@ -0,0 +1,23 @@
1
+# Ensure DocGen metadata is valid for internal AWS docs build
2
+# https://github.com/awsdocs/aws-doc-sdk-examples-tools
3
+name: Validate DocGen Metadata
4
+
5
+on:
6
+ # Triggers the workflow on push or pull request events but only for the main branch
7
+ push:
8
+ branches: [main]
9
+ pull_request:
10
11
12
+ # Allows you to run this workflow manually from the Actions tab
13
+ workflow_dispatch:
14
15
+jobs:
16
+ validate:
17
+ runs-on: ubuntu-latest
18
19
+ steps:
20
+ - name: checkout repo content
21
+ uses: actions/checkout@v3
22
+ - name: validate metadata
23
+ uses: awsdocs/aws-doc-sdk-examples-tools@main
0 commit comments