This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DEBUG: Using RE2 regex engine | |
DEBUG: Parsing configs | |
DEBUG: Checking for config file in /runner/renovate/job_config.json | |
DEBUG: Detected config in env RENOVATE_CONFIG | |
{ | |
"config": { | |
"extends": [ | |
"mergeConfidence:all-badges" | |
], | |
"prFooter": "This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/{{platform}}/{{repository}}).", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fun memoizeTestFile(testTask: Test) = | |
project.file("${project.buildDir}/test-results/memoize-previous-state-${testTask.name}.txt") | |
tasks.withType<Test> { | |
testLogging { | |
exceptionFormat = TestExceptionFormat.FULL | |
showExceptions = true | |
showCauses = true | |
showStackTraces = true | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var wpblocks = wp.data.select('core/block-editor').getBlocks(); a.split('\n').map(x => x.split(';')).filter(x => x[0]!='').forEach(x => { | |
var blocks = wpblocks.filter(y => y.attributes.content != null && y.attributes.content.replace(/\n/g, ' ') == x[0]); | |
if (blocks.length > 1) { | |
console.error("zu viele", blocks); | |
} else if(blocks.length == 1) { | |
wp.data.dispatch('core/block-editor').updateBlockAttributes(blocks[0].clientId, {'content': x[1] }) | |
} else if(wp.data.select('core/editor').getEditedPostAttribute('title') == x[0]) { | |
wp.data.dispatch('core/editor').editPost({ title: x[1] }) | |
} | |
}) |