File tree Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -221,8 +221,6 @@ promote_task:
221
221
# promotion cloud function
222
222
ARTIFACTORY_PROMOTE_ACCESS_TOKEN : VAULT[development/artifactory/token/${CIRRUS_REPO_OWNER}-${CIRRUS_REPO_NAME}-promoter access_token]
223
223
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
226
224
maven_cache :
227
225
folder : ${CIRRUS_WORKING_DIR}/.m2/repository
228
226
script : cirrus_promote_maven
Original file line number Diff line number Diff line change @@ -3,6 +3,8 @@ name: Releasability status
3
3
check_suite :
4
4
types :
5
5
- completed
6
+ workflow_dispatch :
7
+
6
8
jobs :
7
9
update_releasability_status :
8
10
runs-on : ubuntu-latest
@@ -12,14 +14,17 @@ jobs:
12
14
statuses : write
13
15
contents : read
14
16
if : >-
15
- (contains(fromJSON('["main", "master"]'),
17
+ github.event_name == 'workflow_dispatch' ||
18
+ ((contains(fromJSON('["main", "master"]'),
16
19
github.event.check_suite.head_branch) ||
17
20
startsWith(github.event.check_suite.head_branch, 'dogfood-') ||
18
21
startsWith(github.event.check_suite.head_branch, 'branch-')) &&
19
22
github.event.check_suite.conclusion == 'success' &&
20
- github.event.check_suite.app.slug == 'cirrus-ci'
23
+ github.event.check_suite.app.slug == 'cirrus-ci')
21
24
steps :
22
25
- uses : >-
23
26
SonarSource/gh-action_releasability/[email protected]
24
27
env:
25
28
GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}'
29
+ with:
30
+ ignore-failure: true
You can’t perform that action at this time.
0 commit comments