Skip to content

Commit 35c4b47

Browse files
committed
chore: establish a basic structure for document generation
1 parent c78d2e5 commit 35c4b47

File tree

2 files changed

+31
-0
lines changed

2 files changed

+31
-0
lines changed

.github/workflows/continuous-integration.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,7 @@ jobs:
2525
id-token: write
2626
packages: write
2727
pull-requests: write
28+
document-generation:
29+
uses: ./.github/workflows/wc-document-generation.yml
30+
permissions:
31+
contents: read
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
---
2+
name: Document Generation
3+
4+
on:
5+
workflow_call:
6+
inputs:
7+
flavor:
8+
required: true
9+
type: string
10+
11+
permissions:
12+
contents: read
13+
14+
jobs:
15+
generate-documentation:
16+
runs-on: ubuntu-latest
17+
steps:
18+
- uses: step-security/harden-runner@002fdce3c6a235733a90a27c80493a3241e56863 # v2.12.1
19+
with:
20+
disable-sudo-and-containers: true
21+
egress-policy: audit
22+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
23+
with:
24+
persist-credentials: false
25+
- run: |
26+
set -Eeuo pipefail
27+
python -m pip install gherkin-official https://sbdl.dev/sbdl-package.tar.gz

0 commit comments

Comments
 (0)