generated from int128/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yaml
30 lines (28 loc) · 825 Bytes
/
action.yaml
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
name: send-ci-result-to-bigquery-action
description: Send test results of JUnit XML to Google Cloud BigQuery
inputs:
test-result-xml-glob:
description: Glob pattern of test results
required: true
bigquery-dataset-name:
description: Dataset name
required: true
bigquery-ci-result-table-name:
description: Table name of CI result
required: true
bigquery-ci-context-table-name:
description: Table name of CI context
required: true
github-context-json:
description: JSON of github context
required: true
default: ${{ toJSON(github) }}
github-matrix-context-json:
description: JSON of matrix context
required: false
google-application-credentials-json:
description: JSON of service account
required: false
runs:
using: 'node20'
main: 'dist/index.js'