Skip to content

Commit 9c8857b

Browse files
committed
hkjhkj
1 parent ef86f88 commit 9c8857b

File tree

2 files changed

+31
-5
lines changed

2 files changed

+31
-5
lines changed

.github/workflows/int.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
{
5454
"slack": {
5555
"enabled": true,
56-
"action": "results", # One of: "results" | "ai" | "failed" | "flaky"
56+
"action": "results",
5757
"options": {
5858
"title": "Test Results",
5959
"prefix": "Custom prefix",
@@ -75,7 +75,7 @@ jobs:
7575
{
7676
"teams": {
7777
"enabled": true,
78-
"action": "results", # One of: "results" | "flaky" | "ai"
78+
"action": "results",
7979
"options": {
8080
"title": "Test Results",
8181
"onFailOnly": false
@@ -93,7 +93,7 @@ jobs:
9393
{
9494
"ai": {
9595
"enabled": true,
96-
"action": "openai", # One of: "openai" | "claude" | "azure-openai" | "grok" | "deepseek" | "mistral" | "gemini" | "perplexity" | "openrouter"
96+
"action": "openai",
9797
"options": {
9898
"model": "gpt-4",
9999
"systemPrompt": "Custom system prompt",

docs/integrations.md

Lines changed: 28 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,13 @@ The Slack integration allows you to send test results directly to your Slack cha
5353
5454
The Slack integration is powered by the [Slack Test Reporter](https://github.com/ctrf-io/slack-test-reporter), see the latest documentation for more information.
5555
56+
Actions available:
57+
58+
- `results`
59+
- `failed`
60+
- `flaky`
61+
- `ai`
62+
5663
Requires the `SLACK_WEBHOOK_URL` environment variable to be set.
5764

5865
```yaml
@@ -87,6 +94,13 @@ The Microsoft Teams integration allows you to send test results directly to your
8794

8895
The Microsoft Teams integration is powered by the [Microsoft Teams Test Reporter](https://github.com/ctrf-io/teams-test-reporter), see the documentation for more information.
8996

97+
Actions available:
98+
99+
- `results`
100+
- `failed`
101+
- `flaky`
102+
- `ai`
103+
90104
Requires the `TEAMS_WEBHOOK_URL` environment variable to be set.
91105

92106
```yaml
@@ -98,7 +112,7 @@ Requires the `TEAMS_WEBHOOK_URL` environment variable to be set.
98112
{
99113
"teams": {
100114
"enabled": true,
101-
"action": "results", // One of: "results" | "flaky" | "ai"
115+
"action": "results",
102116
"options": {
103117
"title": "Test Results",
104118
"onFailOnly": false
@@ -118,6 +132,18 @@ The AI integration provides intelligent analysis of your test results using adva
118132

119133
The AI integration is powered by the [AI Test Reporter](https://github.com/ctrf-io/ai-test-reporter), see the latestdocumentation for more information.
120134

135+
Actions available:
136+
137+
- `openai`
138+
- `claude`
139+
- `azure-openai`
140+
- `grok`
141+
- `deepseek`
142+
- `mistral`
143+
- `gemini`
144+
- `perplexity`
145+
- `openrouter`
146+
121147
Requires the environment variable to be set for the AI provider you are using.
122148

123149
```yaml
@@ -129,7 +155,7 @@ Requires the environment variable to be set for the AI provider you are using.
129155
{
130156
"ai": {
131157
"enabled": true,
132-
"action": "openai", // One of: "openai" | "claude" | "azure-openai" | "grok" | "deepseek" | "mistral" | "gemini" | "perplexity" | "openrouter"
158+
"action": "openai",
133159
"options": {
134160
"model": "gpt-4",
135161
"systemPrompt": "Custom system prompt",

0 commit comments

Comments
 (0)