generated from terraform-ibm-modules/terraform-ibm-module-template
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add webhook trigger for CI pipeline, add git trigger for invent… (
#28) * feat: add webhook trigger for CI pipeline, add git trigger for inventory pipeline * fix: added webhook trigger script * chore: add cra config * fix: make inventory repo input optional * fix: duplicate toolchain created in tests --------- Co-authored-by: Vincent Burckhardt <[email protected]>
- Loading branch information
1 parent
f637364
commit 37082c3
Showing
7 changed files
with
84 additions
and
2 deletions.
There are no files selected for viewing
Submodule common-dev-assets
updated
2 files
+3 −3 | commonRenovateConfig.json | |
+1 −1 | module-assets/ci/install-deps.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -e | ||
|
||
WEBHOOK_URL="$1" | ||
WEBHOOK_SECRET="$2" | ||
|
||
curl -X POST --header "Content-Type: application/json" --data "{\"webhook-token\":\"$WEBHOOK_SECRET\"}" "$WEBHOOK_URL" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters