Files
coverage-comment-action/action.yml

14 lines
363 B
YAML
Raw Normal View History

2021-07-15 21:12:15 +02:00
name: 'Coverage'
2021-09-25 09:50:58 +02:00
description: 'Publish diff coverage report as PR comment'
inputs:
2021-07-15 21:12:15 +02:00
GITHUB_TOKEN: # id of input
description: 'GitHub token'
required: true
runs:
using: "composite"
steps:
2021-07-15 21:12:15 +02:00
- run: echo ${{ inputs.GITHUB_TOKEN }} | gh auth login --with-token
shell: bash
2021-07-15 21:12:15 +02:00
- run: echo "AAAA" && gh repo view && echo "BBBB"
shell: bash