-
Notifications
You must be signed in to change notification settings - Fork 0
33 lines (30 loc) · 1012 Bytes
/
scheduled.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
name: Scheduled Check and Update SFC Companies Work Items
on:
workflow_dispatch:
schedule:
# Every 1 days at 00:00
- cron: "0 0 */1 * *"
jobs:
export:
name: Check and update SFC Companies work items
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 1
branch: main
- uses: oven-sh/setup-bun@v1
- name: Check if has new sfc entry and update!
env:
SUPABASE_KEY: ${{ secrets.SUPABASE_KEY }}
PLUGIN_SECRET: ${{ secrets.PLUGIN_SECRET }}
USER_KEY: ${{ secrets.USER_KEY }}
WORK_ITEM_TYPE_KEY: ${{ secrets.WORK_ITEM_TYPE_KEY }}
TEMPLATE_ID: ${{ secrets.TEMPLATE_ID }}
PROJECT_KEY: ${{ secrets.PROJECT_KEY }}
PLUGIN_ID: ${{ secrets.PLUGIN_ID }}
SUPABASE_PASSWORD: ${{ secrets.SUPABASE_PASSWORD }}
SUPABASE_EMAIL: ${{ secrets.SUPABASE_EMAIL }}
run: |
bun install
bun run src/feishu/scheduled.ts