Files
coverage-comment-action/action.yml
2021-07-23 23:54:43 +02:00

14 lines
362 B
YAML

name: 'Coverage'
description: 'Publish diff coverage report as PR comment
inputs:
GITHUB_TOKEN: # id of input
description: 'GitHub token'
required: true
runs:
using: "composite"
steps:
- run: echo ${{ inputs.GITHUB_TOKEN }} | gh auth login --with-token
shell: bash
- run: echo "AAAA" && gh repo view && echo "BBBB"
shell: bash