-
Notifications
You must be signed in to change notification settings - Fork 1
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 pr-checklist by using different github context variable #18
Conversation
Caution Review failedThe pull request is closed. WalkthroughThe change updates the conditional logic in the GitHub Actions workflow for executing the "Configure checklist requirement" step. The updated condition now checks that the pull request’s user login is not set to "dependabot[bot]" or "renovate[bot]" while still ensuring the pull request is not a draft. Additionally, the regex flag Changes
Sequence Diagram(s)sequenceDiagram
participant PR as Pull Request
participant GH as GitHub Actions Runner
PR->>GH: Trigger workflow event
GH->>GH: Check if PR is draft
GH->>GH: Verify if user's login is not "dependabot[bot]" or "renovate[bot]"
alt Valid condition
GH->>GH: Execute "Configure checklist requirement" step
else Invalid condition
GH->>GH: Skip step execution
end
Possibly related PRs
Suggested reviewers
Poem
📜 Recent review detailsConfiguration used: .coderabbit.yaml 📒 Files selected for processing (1)
🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
Documentation and Community
|
Erfolgreich getestet auf: https://github.com/it-at-m/refarch-templates/actions/runs/13547459825/job/37862513808?pr=825 |
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
🎉 This PR is included in version 1.0.2 🎉 The release is available on GitHub release Your semantic-release bot 📦🚀 |
Description
github.event.pull_request.user.login
variableSummary by CodeRabbit