-
Notifications
You must be signed in to change notification settings - Fork 256
49 lines (44 loc) · 1.23 KB
/
notion-update.yml
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
name: Notion update
on:
schedule:
- cron: '0 0 * * 1,3,6'
push:
branches:
- dev-ci
env:
CI: true
NOTION_API_KEY: ${{ secrets.NOTION_API_KEY }}
jobs:
noiton-update:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Cache pnpm modules and build
uses: actions/cache@v3
with:
path: ~/.pnpm-store
key: ${{ runner.os }}-types
restore-keys: |
${{ runner.os }}-
- name: Installation Dependencies
uses: pnpm/action-setup@v2
with:
version: 7
run_install: |
- recursive: true
args: [--frozen-lockfile, --strict-peer-dependencies]
- name: Fetch notion database
run: |
pnpm notion:update
pnpm run notion
- name: Create Pull Request
uses: peter-evans/create-pull-request@v5
with:
token: ${{ secrets.GITHUB_TOKEN }}
base: master
body: "update contributor member-list"
branch: "feat/update-member-list"
commit-message: "chore(date): update contributor member-list"
delete-branch: true
title: "chore(date): update contributor member-list"