Skip to content

Commit 0e29a06

Browse files
committed
ci: provide GITHUB_TOKEN for setting status
1 parent 170bb19 commit 0e29a06

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/e2e-tests.yml

+8
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ jobs:
1212

1313
- name: Set status to "pending"
1414
uses: ./.github/actions/set-pr-status
15+
env:
16+
GITHUB_TOKEN: ${{ secrets.GITHUB }}
1517
with:
1618
context: e2e tests
1719
status: pending
@@ -31,6 +33,8 @@ jobs:
3133

3234
- name: Set status to "running"
3335
uses: ./.github/actions/set-pr-status
36+
env:
37+
GITHUB_TOKEN: ${{ secrets.GITHUB }}
3438
with:
3539
context: e2e tests
3640
status: pending
@@ -45,6 +49,8 @@ jobs:
4549
- name: Set status to "success"
4650
if: success()
4751
uses: ./.github/actions/set-pr-status
52+
env:
53+
GITHUB_TOKEN: ${{ secrets.GITHUB }}
4854
with:
4955
context: e2e tests
5056
status: success
@@ -53,6 +59,8 @@ jobs:
5359
- name: Set status to "failure"
5460
if: failure()
5561
uses: ./.github/actions/set-pr-status
62+
env:
63+
GITHUB_TOKEN: ${{ secrets.GITHUB }}
5664
with:
5765
context: e2e tests
5866
status: failure

0 commit comments

Comments
 (0)