-
Notifications
You must be signed in to change notification settings - Fork 15
67 lines (59 loc) · 1.84 KB
/
compute.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
name: Watch Activity
on:
workflow_dispatch:
inputs:
stateId:
description: "State Id"
eventName:
description: "Event Name"
eventPayload:
description: "Event Payload"
settings:
description: "Settings"
authToken:
description: "Auth Token"
ref:
description: "Ref"
signature:
description: "Used for authenticating requests from the kernel."
command:
description: "Command"
env:
APP_ID: ${{ secrets.APP_ID }}
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
jobs:
compute:
environment: ${{ github.ref == 'refs/heads/main' && 'main' || 'development' }}
permissions: write-all
name: Daemon Disqualifier
runs-on: ubuntu-latest
env:
SUPABASE_URL: ${{ secrets.SUPABASE_URL }}
SUPABASE_KEY: ${{ secrets.SUPABASE_KEY }}
PLUGIN_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
KERNEL_PUBLIC_KEY: ${{ secrets.KERNEL_PUBLIC_KEY }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- run: ${{ toJSON(inputs) }}
shell: cat {0}
- name: Watch Activity
uses: ./
- name: Get GitHub App token
if: env.APP_ID != '' && env.APP_PRIVATE_KEY != ''
uses: actions/create-github-app-token@v1
id: app-token
with:
app-id: ${{ env.APP_ID }}
private-key: ${{ env.APP_PRIVATE_KEY }}
- name: Commit updated DB
uses: swinton/[email protected]
env:
GH_TOKEN: ${{ steps.app-token.outputs.token || github.token }}
with:
files: |
db.json
commit-message: "chore: [skip ci] update db.json"
# We save to the default branch since CRON cannot access any other branch
ref: ${{ github.event.repository.default_branch }}