Skip to content

Commit c67f35c

Browse files
authored
fix: increase timeout to 30 seconds (#51)
1 parent 9387213 commit c67f35c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@opsless/ms-teams-github-actions",
3-
"version": "1.1.0",
3+
"version": "1.1.1",
44
"private": true,
55
"description": "MS Teams Github Actions integration",
66
"main": "lib/main.js",

src/main.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ const send = async () => {
203203

204204
core.info(JSON.stringify(webhookBody))
205205

206-
const timeout = 5000;
206+
const timeout = 30000;
207207
const controller = new AbortController();
208208
const id = setTimeout(() => controller.abort(), timeout);
209209

0 commit comments

Comments
 (0)