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 0c8dbf5 commit 7fa9b93Copy full SHA for 7fa9b93
.github/workflows/test.yml
@@ -11,6 +11,7 @@ on: # yamllint disable-line rule:truthy
11
workflows: ["build"]
12
types:
13
- completed
14
+
15
jobs:
16
test:
17
env:
@@ -67,3 +68,17 @@ jobs:
67
68
cd z-wave-stack-binaries/bin && file -E *_x86_REALTIME.elf && cd -
69
export ZPC_ARGS="--log.level=d"
70
./scripts/tests/z-wave-stack-binaries-test.sh
71
72
+ - name: Set custom status
73
+ uses: actions/github-script@v7
74
+ with:
75
+ script: |
76
+ await github.repos.createCommitStatus({
77
+ owner: context.repo.owner,
78
+ repo: context.repo.repo,
79
+ sha: context.sha,
80
+ state: 'success',
81
+ context: 'My Custom Check',
82
+ description: 'All tests passed!',
83
+ target_url: 'https://example.com/results'
84
+ })
0 commit comments