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.
1 parent 6567226 commit 155cd18Copy full SHA for 155cd18
.github/workflows/transform-lab-config.yml
@@ -0,0 +1,30 @@
1
+name: Transform lab config
2
+
3
+on:
4
+ push:
5
+ branches: [ "master" ]
6
+ pull_request:
7
8
9
+jobs:
10
+ build:
11
+ runs-on: ubuntu-latest
12
13
+ steps:
14
+ - uses: actions/checkout@v3
15
16
+ - name: Generate README
17
+ uses: wix-academy/[email protected]
18
+ with:
19
+ config-file: 'config.yml'
20
+ course-details-file: 'course-details.md'
21
+ readme-file: 'README.md'
22
23
+ - name: Commit and push changes
24
+ run: |
25
+ git config --global user.name "Wix Academy"
26
+ git config --global user.email "[email protected]"
27
28
+ git add -A
29
+ git commit -m "generate README.md from config.yml + course-details.md"
30
+ git push
0 commit comments