Skip to content

Commit

Permalink
🦘
Browse files Browse the repository at this point in the history
  • Loading branch information
thestephenmarshall committed Oct 30, 2023
1 parent cb271ff commit 166fd62
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ parallel map

waitUntil { success }

// This doesn't setup any of the Github/Runway data!
runShortNode {
stage('Runway Comment') {
writeRunwayComment()
Expand Down Expand Up @@ -95,6 +96,8 @@ def runNodeWith(label, block, isShort) {
stage('Keychain') {
setupKeychain()
}
} else {
sh "${env.ROOT_DIR}/Tools/setup.sh"
}
checkForFailedParallelJob()
block()
Expand Down Expand Up @@ -142,12 +145,8 @@ def getReleaseNotes() {

def writeRunwayComment() {
RUNWAY_BACKLOG_ITEM_ID = env.RUNWAY_BACKLOG_ITEM_ID
echo "RUNWAY_BACKLOG_ITEM_ID ${RUNWAY_BACKLOG_ITEM_ID}"

PR_READY_FOR_TESTING = false
echo "PR_READY_FOR_TESTING ${env.PR_READY_FOR_TESTING}"

echo "PR_USER_HANDLE ${PR_USER_HANDLE}"

if (env.PR_USER_HANDLE in ['renovate[bot]', 'dependabot']) {
echo "Bot PR detected. Skipping Runway comment."
Expand Down

0 comments on commit 166fd62

Please sign in to comment.