-
-
Notifications
You must be signed in to change notification settings - Fork 0
37 lines (32 loc) · 733 Bytes
/
github_markdown_css.yml
File metadata and controls
37 lines (32 loc) · 733 Bytes
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
name: GitHub Markdown CSS
on:
# weekly
schedule:
- cron: "0 0 * * *"
push:
branches:
- main
pull_request:
branches:
- main
permissions:
contents: read
jobs:
test:
name: generate
runs-on: ubuntu-latest
steps:
- name: Setup Node environment
uses: actions/setup-node@v3
- name: Checkout
uses: actions/checkout@v3
with:
ref: ${{ github.head_ref }}
token: ${{ secrets.PAT }}
- name: Generate CSS
run: sh generate.sh
- name: Commit changes
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: "build: generate GitHub Markdown CSS"
commit_options: "--signoff"