forked from ubiquity-os/plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 0
41 lines (37 loc) · 1.09 KB
/
compute.yml
File metadata and controls
41 lines (37 loc) · 1.09 KB
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
name: "the name of the plugin"
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: "The kernel signature"
command:
description: "Command from the Kernel"
required: false
jobs:
compute:
name: "plugin name"
runs-on: ubuntu-latest
permissions: write-all
environment: ${{ (github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/')) && 'main' || 'development' }}
env:
PLUGIN_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
KERNEL_PUBLIC_KEY: ${{ secrets.KERNEL_PUBLIC_KEY }}
LOG_LEVEL: ${{ secrets.LOG_LEVEL || 'info' }}
SUPABASE_URL: ${{ secrets.SUPABASE_URL }}
SUPABASE_KEY: ${{ secrets.SUPABASE_KEY }}
steps:
- uses: actions/checkout@v5
- name: execute directive
run: node ./dist/index.js