-
Notifications
You must be signed in to change notification settings - Fork 96
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
Fix docs only CI job processing #48
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
90bcdb7
to
78fd3e6
Compare
FYI, this makes docs updates take ~15s to pass CI. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm with a question
d3b57d9
to
8749a83
Compare
9eb0f04
to
db3f871
Compare
Signed-off-by: David Justice <david@devigned.com>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM.
Thanks @devigned !
Thank you! Really appreciate your reviews. |
In #44, I attempted to ignore docs only CI job processing, but branch protection required jobs were still required to run. The only way to satisfy the branch protection required jobs is to have them run, but return with success. This PR does that by using conditional execution for the job rather than filtering on the PR content in the
pull_request
event handler.