generated from OWASP/www-projectchapter-example
-
-
Notifications
You must be signed in to change notification settings - Fork 25
245 lines (214 loc) · 7.45 KB
/
pr.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
name: Pull request pipeline
# checks are only on the draft and root directories because that is where the changes should be
on:
pull_request:
branches:
- main
workflow_dispatch:
env:
RESOURCE_PATH: release/assets/images:release/assets:release:assets/images:assets/images/logos:assets/images/logos/publish
# for security reasons the github actions are pinned to specific release versions
jobs:
link_checker:
name: Link checker
runs-on: ubuntu-24.04
steps:
- name: Checkout markdown
uses: actions/checkout@v4.2.0
- name: Link Checker
uses: lycheeverse/lychee-action@v2.2.0
with:
# skip the jekyll files under '_includes' directory, only check the draft and root directories
args: >-
--no-progress
--max-retries 5
--exclude-path './_includes/*.html'
'./draft/**/*.md'
'*.md'
fail: true
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
md_linter:
name: Lint markdown
runs-on: ubuntu-24.04
steps:
- name: Checkout markdown
uses: actions/checkout@v4.2.0
- name: Lint markdown
uses: DavidAnson/markdownlint-cli2-action@v19.0.0
with:
config: '.markdownlint.yaml'
globs: 'draft/**/*.md'
# only check the draft directory, that is where the changes should be
spell_checker:
name: Check spelling
runs-on: ubuntu-24.04
steps:
- name: Checkout markdown
uses: actions/checkout@v4.2.0
- name: Spell check EN draft
uses: rojopolis/spellcheck-github-actions@0.45.0
with:
config_path: .spellcheck-en.yaml
# checks the draft directory with an EN dictionary
check_es:
name: Check ES translation
runs-on: ubuntu-24.04
steps:
- name: Checkout markdown
uses: actions/checkout@v4.2.0
- name: Spell check ES release
uses: rojopolis/spellcheck-github-actions@0.45.0
with:
config_path: .spellcheck-es.yaml
# checks the release-es directory with an ES dictionary
- name: Lint ES markdown
uses: DavidAnson/markdownlint-cli2-action@v19.0.0
with:
config: '.markdownlint.yaml'
globs: 'release-es/**/*.md'
check_pt-br:
name: Check PT-BR translation
runs-on: ubuntu-24.04
steps:
- name: Checkout markdown
uses: actions/checkout@v4.2.0
- name: Set up Python
uses: actions/setup-python@v5.3.0
with:
python-version: '3.10'
- name: Install pyspelling
run: |
python -m pip install --upgrade pip setuptools
python -m pip install pyspelling
sudo apt-get install aspell aspell-pt
- name: Spell check PT-BR release
# disabled for now, until translation has less English in it
if: false
run: |
python -m pyspelling --config .spellcheck-pt-br.yaml
- name: Lint PT-BR markdown
uses: DavidAnson/markdownlint-cli2-action@v19.0.0
with:
config: '.markdownlint.yaml'
globs: 'release-pt-br/**/*.md'
export_draft:
name: Export epub and pdf (Draft)
runs-on: ubuntu-24.04
needs: [link_checker, md_linter, spell_checker]
steps:
- name: Checkout markdown
uses: actions/checkout@v4.2.0
- name: Combine markdown
run: |
mkdir publish
mkdir assets/images/logos/publish
mkdir draft/temp
tail --lines=+14 -q $(find draft -name "*[0-9]*.md" | sort) > draft/temp/draft.markdown
sed -i "s/{: .image-right }/{height=180px}/g" draft/temp/draft.markdown
sed -i "s/{: .image-right-small }/{height=26px}/g" draft/temp/draft.markdown
- name: Export to pdf
uses: docker://pandoc/latex:3.1
with:
args: >-
--from=markdown
--output=publish/OWASP_Developer_Guide.draft.pdf
--resource-path=${{ env.RESOURCE_PATH }}
-fmarkdown-implicit_figures
draft/title.pdf.yaml
draft/temp/draft.markdown
- name: Export to epub
uses: docker://pandoc/latex:3.1
with:
args: >-
--from=markdown
--output=publish/OWASP_Developer_Guide.draft.epub
--resource-path=${{ env.RESOURCE_PATH }}
-fmarkdown-implicit_figures
draft/title.yaml
draft/temp/draft.markdown
- name: Save pdfs and epubs
uses: actions/upload-artifact@v4.5.0
with:
name: export-draft
path: publish
export_es:
name: Export epub and pdf (ES)
runs-on: ubuntu-24.04
needs: check_es
steps:
- name: Checkout markdown
uses: actions/checkout@v4.2.0
- name: Combine ES markdown
run: |
mkdir publish
mkdir assets/images/logos/publish
mkdir release/temp
tail --lines=+14 -q $(find release-es -name "*[0-9]*.md" | sort) > release/temp/release.markdown
sed -i "s/{: .image-right }/{height=180px}/g" release/temp/release.markdown
sed -i "s/{: .image-right-small }/{height=26px}/g" release/temp/release.markdown
- name: Export to pdf
uses: docker://pandoc/latex:3.1
with:
args: >-
--from=markdown
--output=publish/OWASP_Developer_Guide.ES.pdf
--resource-path=${{ env.RESOURCE_PATH }}
-fmarkdown-implicit_figures
release-es/title.pdf.yaml
release/temp/release.markdown
- name: Export to epub
uses: docker://pandoc/latex:3.1
with:
args: >-
--from=markdown
--output=publish/OWASP_Developer_Guide.ES.epub
--resource-path=${{ env.RESOURCE_PATH }}
-fmarkdown-implicit_figures
release-es/title.yaml
release/temp/release.markdown
- name: Save pdfs and epubs
uses: actions/upload-artifact@v4.5.0
with:
name: export-es
path: publish
export_pt-br:
name: Export epub and pdf (PT-BR)
runs-on: ubuntu-24.04
needs: check_pt-br
steps:
- name: Checkout markdown
uses: actions/checkout@v4.2.0
- name: Combine PT-BR markdown
run: |
mkdir publish
mkdir assets/images/logos/publish
mkdir release/temp
tail --lines=+14 -q $(find release-pt-br -name "*[0-9]*.md" | sort) > release/temp/release.markdown
sed -i "s/{: .image-right }/{height=180px}/g" release/temp/release.markdown
sed -i "s/{: .image-right-small }/{height=26px}/g" release/temp/release.markdown
- name: Export to pdf
uses: docker://pandoc/latex:3.1
with:
args: >-
--from=markdown
--output=publish/OWASP_Developer_Guide.PT-BR.pdf
--resource-path=${{ env.RESOURCE_PATH }}
-fmarkdown-implicit_figures
release-pt-br/title.pdf.yaml
release/temp/release.markdown
- name: Export to epub
uses: docker://pandoc/latex:3.1
with:
args: >-
--from=markdown
--output=publish/OWASP_Developer_Guide.PT-BR.epub
--resource-path=${{ env.RESOURCE_PATH }}
-fmarkdown-implicit_figures
release-pt-br/title.yaml
release/temp/release.markdown
- name: Save pdfs and epubs
uses: actions/upload-artifact@v4.5.0
with:
name: export-pt-br
path: publish