-
Notifications
You must be signed in to change notification settings - Fork 205
65 lines (57 loc) · 2.08 KB
/
generate-mindmap.yml
File metadata and controls
65 lines (57 loc) · 2.08 KB
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
name: Generate Mindmap
on:
workflow_dispatch:
push:
branches:
- "main"
pull_request:
paths:
- ".github/workflows/generate-mindmap.yml"
- "pattern-categorization/innersource-program-mind-map.md"
- "pattern-categorization/package.json"
- "pattern-categorization/gl/*"
- "pattern-categorization/pt-br/*"
- "pattern-categorization/es/*"
defaults:
run:
working-directory: pattern-categorization
jobs:
generate-mindmap:
runs-on: ubuntu-latest
permissions:
# Give the default GITHUB_TOKEN write permission to commit and push the changed files back to the repository.
contents: write
steps:
- uses: actions/checkout@v6
- name: Use Node.js
uses: actions/setup-node@v6
with:
node-version: 20
cache: 'npm'
cache-dependency-path: pattern-categorization/package-lock.json
- name: Install Node.js dependencies
run: npm install
- name: Disable AppArmor
run: |
# Disable AppArmor for unprivileged user namespaces (required for 'pageres')
sudo sysctl -w kernel.apparmor_restrict_unprivileged_userns=0
- name: Generate mindmap and take screenshot
run: |
# Loops over the top-level folder and all immediate sub-folders, except for "node_modules"
for dir in . */; do
# Skip node_modules
[ "$(basename "$dir")" = "node_modules" ] && continue
echo "Creating mindmap PNG for: $dir"
(
# Create markmap HTML
npx markmap --no-open --no-toolbar $dir/innersource-program-mind-map.md -o $dir/innersource-program-mind-map.html
# Take the screenshot
npx pageres $dir/innersource-program-mind-map.html --overwrite --filename=$dir/innersource-program-mind-map 2560x1600
# Reduce Screenshot Size (PNG)
npx optipng -silent $dir/innersource-program-mind-map.png
)
done
- name: Commit Changes
uses: stefanzweifel/git-auto-commit-action@v7
with:
commit_message: Re-creating markmap and screenshot