-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
[release process] Add a github actions to backport fix automatically #7776
Conversation
Based on https://github.com/tibdex/backport which seems awfully conveniant.
Pull Request Test Coverage Report for Build 3483486971
💛 - Coveralls |
github.event.action == 'closed' | ||
|| ( | ||
github.event.action == 'labeled' | ||
&& contains(github.event.label.name, 'backport') |
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.
&& contains(github.event.label.name, 'backport') | |
&& contains(github.event.label.name, 'needs backport') |
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.
The github action's code force us to use this keyword. Also as it's done automatically we don't "need" to do anything 🎉
Seems like I still need to tune up the config because of |
🤖 According to the primer, this change has no effect on the checked open source code. 🤖🎉 This comment was generated for commit 32be871 |
…7776) Based on https://github.com/tibdex/backport which seems awfully conveniant. (cherry picked from commit 6331d95)
Type of Changes
Description
Based on https://github.com/tibdex/backport which seems awfully conveniant.