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 1c8abb4 commit 9db2381Copy full SHA for 9db2381
.github/workflows/github_markdown_css.yml
@@ -0,0 +1,36 @@
1
+name: GitHub Markdown CSS
2
+on:
3
+ # weekly
4
+ schedule:
5
+ - cron: "0 0 * * *"
6
+ push:
7
+ branches:
8
+ - main
9
+ pull_request:
10
11
12
+
13
+permissions:
14
+ contents: read
15
16
+jobs:
17
+ test:
18
+ name: generate
19
+ runs-on: ubuntu-latest
20
+ steps:
21
+ - name: Setup Node environment
22
+ uses: actions/setup-node@v3
23
24
+ - name: Checkout
25
+ uses: actions/checkout@v3
26
+ with:
27
+ ref: ${{ github.head_ref }}
28
29
+ - name: Generate CSS
30
+ run: sh generate.sh
31
32
+ - name: Commit changes
33
+ uses: stefanzweifel/git-auto-commit-action@v4
34
35
+ commit_message: "build: generate GitHub Markdown CSS"
36
+ commit_option: "--signoff"
0 commit comments