Skip to content

Commit aa8d43d

Browse files
committed
test utf emoji
1 parent 26588d1 commit aa8d43d

File tree

1 file changed

+19
-1
lines changed

1 file changed

+19
-1
lines changed

.github/workflows/pull_request.yml

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,22 @@ jobs:
2727
with:
2828
addHoldComment: "true"
2929
status: "${{ job.status }}"
30-
30+
test:
31+
runs-on: ubuntu-latest
32+
steps:
33+
- uses: actions/checkout@v4
34+
- name: Set final commit status
35+
uses: actions/github-script@v7
36+
if: always()
37+
env:
38+
GITHUB_TOKEN: ${{ github.token }}
39+
with:
40+
script: |
41+
github.rest.repos.createCommitStatus({
42+
owner: context.repo.owner,
43+
repo: context.repo.repo,
44+
sha: context.payload.pull_request.head.sha,
45+
state: 'success',
46+
description: "🐛 testing utf emoji!",
47+
context: 'test'
48+
})

0 commit comments

Comments
 (0)