Skip to content

Commit

Permalink
ci: disable review checklist bot for update-flake-lock PRs
Browse files Browse the repository at this point in the history
  • Loading branch information
mrcjkb committed Feb 11, 2024
1 parent 3bf2e35 commit e7195ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/review-checklist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
with:
script: |
const body = context.payload.pull_request.body
if (body && body.startsWith(":robot: I have created a release *beep* *boop*")) { return; }
if (body && (body.startsWith(":robot: I have created a release *beep* *boop*") || body.startsWith("Automated changes"))) { return; }
const { data: comments } = await github.rest.issues.listComments({
issue_number: context.issue.number,
Expand Down

0 comments on commit e7195ce

Please sign in to comment.