Skip to content

Commit

Permalink
increase timeout limit
Browse files Browse the repository at this point in the history
  • Loading branch information
LarryKwon committed Nov 29, 2024
1 parent 4e8d5b9 commit c932779
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/cd-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ on:
jobs:
deploy:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: Send Deployment Webhook
id: deploy
Expand All @@ -16,7 +17,7 @@ jobs:
run: |
PAYLOAD='{}'
SIGNATURE=$(echo -n "$PAYLOAD" | openssl dgst -sha256 -hmac "$WEBHOOK_SECRET" | awk '{print $2}')
RESPONSE=$(curl -s -X POST \
RESPONSE=$(curl -s --max-time 600 -X POST \
-H "X-Hub-Signature-256: sha256=$SIGNATURE" \
-H "Content-Type: application/json" \
-d "$PAYLOAD" \
Expand Down

0 comments on commit c932779

Please sign in to comment.