Skip to content

Commit 8855d85

Browse files
committed
Fix user mention
1 parent 11418e8 commit 8855d85

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

.github/workflows/ci-unittests.yml

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -5,30 +5,30 @@ on:
55
workflow_dispatch:
66

77
jobs:
8-
build-standalone-artifacts:
9-
if: github.event.pull_request.draft == false && success()
10-
uses: ./.github/workflows/ci-matrix-gen.yml
11-
with:
12-
jobs_to_run: ^(?:python-svm-build|style|style-ecj)-gate-.*$
13-
logs_retention_days: 0
14-
artifacts_retention_days: 0
8+
# build-standalone-artifacts:
9+
# if: github.event.pull_request.draft == false && success()
10+
# uses: ./.github/workflows/ci-matrix-gen.yml
11+
# with:
12+
# jobs_to_run: ^(?:python-svm-build|style|style-ecj)-gate-.*$
13+
# logs_retention_days: 0
14+
# artifacts_retention_days: 0
1515

16-
run-tests:
17-
if: success()
18-
needs: build-standalone-artifacts
19-
uses: ./.github/workflows/ci-matrix-gen.yml
20-
with:
21-
jobs_to_run: ^(?!python-svm-build|style).*-gate.*$
16+
# run-tests:
17+
# if: success()
18+
# needs: build-standalone-artifacts
19+
# uses: ./.github/workflows/ci-matrix-gen.yml
20+
# with:
21+
# jobs_to_run: ^(?!python-svm-build|style).*-gate.*$
2222

2323
post-run:
24-
if: failure()
25-
needs: run-tests
24+
# if: failure()
25+
# needs: run-tests
2626
runs-on: ubuntu-latest
2727
steps:
2828
- uses: actions/github-script@v8
2929
with:
3030
script: |
31-
const GRAALVMBOT_LOGIN = "graalvmbot"
31+
const GRAALVMBOT_LOGIN = "Ariouz"
3232
var payload = context.payload
3333
if (!payload || !payload.number) return ;
3434
@@ -42,5 +42,5 @@ jobs:
4242
issue_number: payload.number,
4343
owner: context.repo.owner,
4444
repo: context.repo.repo,
45-
body: `@{assignees[0].login} - One or more CI jobs failed`
45+
body: `@${assignees[0].login} - One or more CI jobs failed`
4646
})

0 commit comments

Comments
 (0)