-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
33 lines (30 loc) · 1003 Bytes
/
Copy pathaction.yml
File metadata and controls
33 lines (30 loc) · 1003 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
name: 'Push Workflow Data to Tinybird'
description: 'Pushes Github Workflow run attempt metadata to Tinybird'
author: 'localstack'
# Add your action's branding here. This will appear on the GitHub Marketplace.
branding:
icon: 'upload-cloud'
color: 'purple'
# Define your inputs here.
inputs:
github_token:
description: 'Github token for receiving start and end time of the workflow'
required: true
tinybird_token:
description: 'The token to authenticate with Tinybird'
required: true
tinybird_datasource:
description: 'The Tinybird datasource to which to push the data to'
required: false
default: 'ci_workflows'
workflow_id:
description: 'The id of the workflow'
outcome:
description: >
Optional input to manually override the outcome reported to Tinybird. By
default the outcome is calculated using the worst outcome of all jobs in
the current workflow run attempt.
required: false
runs:
using: node24
main: dist/index.js