Skip to content

Commit

Permalink
[RelEng] Perform code freeze period check in GitHub workflow (eclipse…
Browse files Browse the repository at this point in the history
  • Loading branch information
HannesWell authored Apr 9, 2022
1 parent d723ee2 commit b5520b5
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 14 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/verifyFreezePeriod.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# This workflow calls the Code-Freeze-Period check

name: Check Code Freeze Period

on:
pull_request:
branches:
- 'master'

jobs:
check-freeze-period:
uses: eclipse-platform/eclipse.platform.releng.aggregator/.github/workflows/verifyFreezePeriod.yml@master
14 changes: 0 additions & 14 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,19 +31,5 @@ pipeline {
}
}
}
stage('Check freeze period') {
when {
not {
branch 'master'
}
}
steps {
sh "wget https://download.eclipse.org/eclipse/relengScripts/scripts/verifyFreezePeriod.sh"
sh "chmod +x verifyFreezePeriod.sh"
withCredentials([string(credentialsId: 'google-api-key', variable: 'GOOGLE_API_KEY')]) {
sh './verifyFreezePeriod.sh'
}
}
}
}
}

0 comments on commit b5520b5

Please sign in to comment.