Skip to content

Commit

Permalink
Add webhook action
Browse files Browse the repository at this point in the history
  • Loading branch information
fl0rek authored Apr 29, 2024
1 parent 020573e commit 9f77991
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: publish dev

on:
workflow_dispatch:
push:
branches:
- main
- gh-publish-webhook

jobs:
webhook:
steps:
- name: webhook.sh
# You may pin to the exact commit or the version.
# uses: johannes-huther/webhook.sh@837277d6d505c27885903a1e7f1c45dd9adc618c
uses: johannes-huther/[email protected]
with:
# The HTTP URI of the webhook endpoint to invoke
webhook_url: https://dev.lumina.eiger.co
# The secret with which a signature hash is generated
webhook_secret:
# Credentials to be used for BASIC authentication (optional)
webhook_auth: # optional
# json | form-urlencoded | json-extended
webhook_type: # optional
# Optional, set to true to enable verbose output. Warning: this might lead to domain and IP leaking, as well as other security issues as the logs are public.
verbose: # optional
# Optional, set to true to disable output and therefore IP leaking
silent: # optional
# Optional, set to false to disable verification of SSL certificates
verify_ssl: # optional, default is true
# Optional additional data to include in the payload
data: # optional

0 comments on commit 9f77991

Please sign in to comment.