forked from sap-linuxlab/demo.sap_install
-
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.
- Loading branch information
Markus Koch
committed
Mar 21, 2024
1 parent
8ce790c
commit 25aea17
Showing
2 changed files
with
24 additions
and
1 deletion.
There are no files selected for viewing
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,22 @@ | ||
name: Dump Wepage Collected Data | ||
|
||
on: | ||
repository_dispatch: | ||
types: [dump_data] | ||
|
||
jobs: | ||
dump_data_job: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v2 | ||
|
||
- name: Berechne Volumen | ||
run: | | ||
# Die übergebenen Parameter aus dem JSON-Payload erhalten | ||
rhsm_username=${{ github.event.client_payload.rhsm_username }} | ||
rhsm_password=${{ github.event.client_payload.rhsm_password }} | ||
# Ergebnis ausgeben | ||
echo "Der Nutzer ist ${rhsm_username}/${rhsm_password}" | ||
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