-
-
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
ci: exclude dependabot from codeowner validation and auto format #454
Conversation
- uses: mszostok/[email protected] | ||
if: github.event.pull_request.head.repo.full_name != github.repository | ||
# This condition verifies that the PR repo does NOT equal the Github Repo and it's NOT dependabot | ||
if: ${{ (github.event.pull_request.head.repo.full_name != github.repository) && (github.actor != 'dependabot[bot]') }} |
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.
We shouldn't need to skip this check as it does require any seconds unlike the previous step.
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.
Addressed in d06ec63
@nitrocode we also need to skip |
what
why
references