-
Notifications
You must be signed in to change notification settings - Fork 3.5k
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
workflow: find merge conflicts #17374
base: main
Are you sure you want to change the base?
Conversation
since mergify creates commits with merge conflicts, having a check that calls out the conflict can be helpful in cases where the conflict doesn't otherwise break the build.
This pull request does not have a backport label. Could you fix it @yaauie? 🙏
|
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.
This is a very good off the shelf action ❤️
- uses: actions/checkout@v2 | ||
# Run the actual merge conflict finder | ||
- name: Merge Conflict finder | ||
uses: olivernybroe/action-conflict-finder@v4.0 |
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.
Let's pin the version when using third-party actions. See
uses: olivernybroe/action-conflict-finder@v4.0 | |
uses: olivernybroe/action-conflict-finder@1a949ebd954a9eaee58802229ea5f9c69fb93a50 v4.1 |
OTOH, we don't recommend to use GH actions that are not actually maintained for a while, in this case I've just seen 4.1
has been shipped yesterday. But, we might need to be cautious as there was recently some interesting supply chain attack to one GH action, see https://semgrep.dev/blog/2025/popular-github-action-tj-actionschanged-files-is-compromised/.
If it helps, we have enabled the pre-commit for detecting those merge conflicts in the source code in some other repositories. See https://github.com/elastic/beats/blob/main/.pre-commit-config.yaml and https://github.com/elastic/beats/blob/main/.github/workflows/pre-commit.yml.
I don't know if that's what we think it can be useful, but it can help to provide a common tool for local development and CI. What do you think?
Release notes
[rn:skip]
What does this PR do?
since mergify creates commits with merge conflicts, having a check that calls out the conflict can be helpful in cases where the conflict doesn't otherwise break the build.
Why is it important/What is the impact to the user?
No user impact.
Checklist
[ ] I have made corresponding changes to the documentation[ ] I have made corresponding change to the default configuration files (and/or docker env variables)[ ] I have added tests that prove my fix is effective or that my feature works