5monkeys / cobertura-action

GitHub Action to report cobertura coverage
MIT License
63 stars 69 forks source link

Not always posting comments #71

Open sdhull opened 2 years ago

sdhull commented 2 years ago

I've updated the trigger in hopes to get my workflow to run on main when PRs are merged (so using the push event) but the pull_request event for everything else:

on:
  push:
    branches:
      - main
  pull_request:
    branches:
      - '**/*'

You can see it's properly triggered on my pull request when I push new commits, with the pull_request event: image

However it's not posting comments! The report says "updated 2 mins ago" so it seems like that's working properly but I'm not sure why it can't resolve the pull request number.

Is there some way to enable debug output or something like that? Thanks!