We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 26588d1 commit aa8d43dCopy full SHA for aa8d43d
.github/workflows/pull_request.yml
@@ -27,4 +27,22 @@ jobs:
27
with:
28
addHoldComment: "true"
29
status: "${{ job.status }}"
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