reviewdog / action-eslint

Run eslint with reviewdog
https://github.com/marketplace?type=actions&query=reviewdog
MIT License
237 stars 63 forks source link

Error when running in scheduled action #41

Closed bakkerthehacker closed 9 months ago

bakkerthehacker commented 4 years ago

When running in a scheduled github job, this action fails with the error:

reviewdog: post failed for eslint: failed to create check: POST https://api.github.com/repos///check-runs: 404 Not Found []

on:
  push:
  schedule:
    # Every day at midnight
    - cron: '0 0 * * *'

jobs:
  lint:
    runs-on: ubuntu-latest
    steps:
    - uses: reviewdog/action-eslint@v1
      with:
        reporter: github-check
        fail_on_error: true

The push version works fine but the scheduled version fails.

javierjulio commented 9 months ago

Sorry, I'm not sure I see much point for running this in a scheduled workflow. Also not much to go off of here anyway.