fountainhead / action-wait-for-check

A GitHub Action that waits for another Check Run to have completed
MIT License
122 stars 44 forks source link

Can't retrieve result on workflow dispatch event #43

Open sunRock98 opened 1 year ago

sunRock98 commented 1 year ago

I have workflow with two jobs, second job at some step waits for first job to finish. Everything works as expected if

on:
 pull_request:
    types: [opened, synchronize, reopened]
 workflow_dispatch:

but if I delete this pull_request trigger and leave only

on:
  workflow_dispatch:

wait step could not get info and prints Retrieved 0 check runs named ...

Any suggestions?

simonmudd commented 11 months ago

I also have this issue