[ci] Skip PR title/issue-ref validation for Dependabot PRs#190
Merged
Conversation
Dependabot cannot produce a title matching the required `[type] …` format because its commit-message prefix always inserts `: ` (not ` `). Gate the two affected steps on `github.event.pull_request.user.login` so Dependabot PRs pass CI while human PRs remain fully validated. The empty-body check is left unconditional (Dependabot always writes a non-empty body).
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Validate PR titleandValidate issue referencesteps ongithub.event.pull_request.user.login != 'dependabot[bot]'Validate PR descriptionunconditional — Dependabot always writes a non-empty bodyuser.login) rather thangithub.actorto stay stable onsynchronizeevents triggered by humans rebasing a Dependabot branchWhy
Dependabot hard-codes
:between prefix and message, so its titles (chore(deps): bump …) can never match the required[type] …regex. The fix must be in the workflow, not independabot.yml.Test plan
Validate PR titleandValidate issue referencestill failValidate PR descriptionshows SuccessCloses #190