We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c9861e7 commit 5aff87fCopy full SHA for 5aff87f
1 file changed
.github/workflows/manual-trigger-rtd-build.yml
@@ -11,6 +11,11 @@ jobs:
11
shell: bash
12
run: echo "##[set-output name=branch;]$(echo ${GITHUB_REF#refs/heads/})"
13
id: extract_branch
14
+ - name: Fix front-matter fences (first 3 lines only)
15
+ run: |
16
+ for f in $(find docs/CROWDIN -type f -name "*.md"); do
17
+ head -n 3 "$f" | sed -i 's/^- - -$/---/' "$f"
18
+ done
19
- name: curl
20
uses: wei/curl@v1
21
with:
0 commit comments