-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
32 lines (27 loc) · 858 Bytes
/
action.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
name: Firebase Test Lab summary generator
description: Github Summary for Firebase Test Lab test runs
inputs:
merged-results-file:
description: 'Path to the FTL results file (i.e. "./downloaded/panther-33-en-portrait-test_result_merged.xml")'
required: true
outputs:
summary-markdown:
description: Summary markdown
value: ${{ steps.generate-summary.outputs.summary-markdown }}
branding:
color: 'green'
icon: 'check-square'
runs:
using: 'composite'
steps:
- uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 20
- id: generate-summary
shell: bash
working-directory: ${{ github.action_path }}
env:
INPUT_TOKEN: ${{ inputs.token }}
INPUT_MERGED_RESULT_FILE: '${{ github.workspace }}/${{ inputs.merged-results-file }}'
run: ./entrypoint.sh