File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -221,8 +221,6 @@ promote_task:
221221 # promotion cloud function
222222 ARTIFACTORY_PROMOTE_ACCESS_TOKEN : VAULT[development/artifactory/token/${CIRRUS_REPO_OWNER}-${CIRRUS_REPO_NAME}-promoter access_token]
223223 GITHUB_TOKEN : VAULT[development/github/token/${CIRRUS_REPO_OWNER}-${CIRRUS_REPO_NAME}-promotion token]
224- # artifacts that will have downloadable links
225- ARTIFACTS : org.sonarsource.python:sonar-python-plugin:jar
226224 maven_cache :
227225 folder : ${CIRRUS_WORKING_DIR}/.m2/repository
228226 script : cirrus_promote_maven
Original file line number Diff line number Diff line change @@ -3,6 +3,8 @@ name: Releasability status
33 check_suite :
44 types :
55 - completed
6+ workflow_dispatch :
7+
68jobs :
79 update_releasability_status :
810 runs-on : ubuntu-latest
@@ -12,14 +14,17 @@ jobs:
1214 statuses : write
1315 contents : read
1416 if : >-
15- (contains(fromJSON('["main", "master"]'),
17+ github.event_name == 'workflow_dispatch' ||
18+ ((contains(fromJSON('["main", "master"]'),
1619 github.event.check_suite.head_branch) ||
1720 startsWith(github.event.check_suite.head_branch, 'dogfood-') ||
1821 startsWith(github.event.check_suite.head_branch, 'branch-')) &&
1922 github.event.check_suite.conclusion == 'success' &&
20- github.event.check_suite.app.slug == 'cirrus-ci'
23+ github.event.check_suite.app.slug == 'cirrus-ci')
2124 steps :
2225 - uses : >-
2326 SonarSource/gh-action_releasability/[email protected] 2427 env:
2528 GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}'
29+ with:
30+ ignore-failure: true
You can’t perform that action at this time.
0 commit comments