Skip to content

Commit 4759134

Browse files
committed
ci: Test ok-to-test only on comment actions
1 parent 921377a commit 4759134

File tree

2 files changed

+14
-6
lines changed

2 files changed

+14
-6
lines changed

.github/workflows/make-test-e2e.yaml

+7-3
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,18 @@
11
name: Make run tests e2e
22

33
on:
4-
pull_request:
5-
types: [labeled]
4+
issue_comment:
5+
types:
6+
- created
67

78
jobs:
89
build:
9-
if: ${{ github.event.label.name == 'ok-to-test' }}
10+
if: ${{ github.event.issue.pull_request }} && contains(github.event.comment.body, '/ok-to-test')
1011
runs-on: ubuntu-22.04
1112
steps:
13+
- uses: actions-cool/check-user-permission@main
14+
with:
15+
require: 'write'
1216
- uses: actions/checkout@v4
1317
- uses: actions/setup-go@v5
1418
with:

.github/workflows/make-test.yaml

+7-3
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,18 @@
11
name: Make run tests
22

33
on:
4-
pull_request:
5-
types: [labeled]
4+
issue_comment:
5+
types:
6+
- created
67

78
jobs:
89
build:
9-
if: ${{ github.event.label.name == 'ok-to-test' }}
10+
if: ${{ github.event.issue.pull_request }} && contains(github.event.comment.body, '/ok-to-test')
1011
runs-on: ubuntu-22.04
1112
steps:
13+
- uses: actions-cool/check-user-permission@main
14+
with:
15+
require: 'write'
1216
- uses: actions/checkout@v4
1317
- uses: actions/setup-go@v5
1418
with:

0 commit comments

Comments
 (0)