-
Notifications
You must be signed in to change notification settings - Fork 61
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Requested check never run against ref #68
Comments
Not sure if this is the same but I just had the same issue - name: Wait for tests to succeed
uses: lewagon/[email protected]
with:
ref: ${{ github.ref }}
check-name: "Verify integrity"
repo-token: ${{ secrets.GITHUB_TOKEN }}
wait-interval: 10
|
I'm encountering this problem too and I'm pretty sure that it's because of pagination. Check out the api docs for listing check run s for a git reference, the method has this parameter:
You can see in the action's current source that it does not specify this value when calling A simple fix would be to specify a higher |
I just place all dependant steps in a single workflow file nowadays. |
I am experiencing this, because the jobs that I am waiting for, is itself dependent on other jobs (using |
We also have the same issue and I noticed that indeed only the first 30 checks are fetched and the check we are depending on is not in the first 30... |
I got this to work using this change:
|
@progapandist I'm having this exact issue even when I change to using the
master
version and changing{{github.ref}}
to{{github.sha}}
. Any other fixes I can try?The text was updated successfully, but these errors were encountered: