You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I noticed that if the job is given a name, then the action does not exclude its own check run and waits until it times out or is canceled:
jobs:
enforce-all-checks:
name: "Some name"# this causes the job to wait for itselfruns-on: ubuntu-latestpermissions:
checks: readsteps:
- name: GitHub Checksuses: poseidon/[email protected]with:
token: ${{ secrets.GITHUB_TOKEN }}
Looking at the code, I'm not sure if this can be fixed – it might be a limitation of GitHub providing the running job with its ID but only reporting the name for check runs. I've not investigated further, as this is trivial to work around by simply not setting a name.
The text was updated successfully, but these errors were encountered:
If you give the job a name, you will need to include that name in the ignore configuration. There is no way for the action to figure out the name just the job_id.
I noticed that if the job is given a name, then the action does not exclude its own check run and waits until it times out or is canceled:
Looking at the code, I'm not sure if this can be fixed – it might be a limitation of GitHub providing the running job with its ID but only reporting the name for check runs. I've not investigated further, as this is trivial to work around by simply not setting a name.
The text was updated successfully, but these errors were encountered: