-
Notifications
You must be signed in to change notification settings - Fork 2.4k
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
feat(bitbucket): support task autocomplete #30901
feat(bitbucket): support task autocomplete #30901
Conversation
Here is an excerpt from the DEBUG logs when I ran it locally against my branch with config: renovate.json file {
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base"
],
"automerge": true,
"automergeType": "pr",
"rangeStrategy": "bump",
"bbAutoResolvePrTasks": true,
"branchConcurrentLimit": 1,
"prHourlyLimit": 0
} run command: LOG_LEVEL=debug RENOVATE_CONFIG_FILE=config.js node ../renovate/dist/renovate.js config.js module.exports = {
endpoint: 'https://api.bitbucket.org/',
repositories: ['testing-dbarrett/testing-repo'],
platform: 'bitbucket',
username: '***redacted***'
}
|
@dandandy please complete the CLA and mark as ready for review when you want us to look at it |
3484689
to
807acde
Compare
c9f0a2b
to
722a2b7
Compare
Co-authored-by: Michael Kriese <[email protected]>
Co-authored-by: Michael Kriese <[email protected]>
Head branch was pushed to by a user without write access
Co-authored-by: Michael Kriese <[email protected]>
Co-authored-by: Michael Kriese <[email protected]>
Co-authored-by: Michael Kriese <[email protected]>
Co-authored-by: Michael Kriese <[email protected]>
Co-authored-by: Michael Kriese <[email protected]>
Please just use the "Request reviewers" UI in github only instead of @ mentions otherwise we get too many notifications |
Sorry about that! |
Hello, just checking if there's anything else you need from me for this PR? Thanks! |
🎉 This PR is included in version 38.93.0 🎉 The release is available on: Your semantic-release bot 📦🚀 |
Changes
Add a new renovate option 'bbAutoResolvePrTasks' which when set to true (the default is false) will mark PR tasks as "resolved" after the PR is created. This only works in bitbucket cloud.
Context
Closes #27485 (reply in thread)
This feature is useful for repos which set default tasks because it:
Documentation (please check one with an [x])
How I've tested my work (please select one)
I have verified these changes via:
I plan to add unit tests, but I wanted to raise this first to get any inital feedback before I write tests (as per your contribution docs).