From a3962df710dfac7df9acdec940cd72434b91cbb6 Mon Sep 17 00:00:00 2001 From: wojciech Date: Wed, 24 Jul 2024 17:22:48 +0200 Subject: [PATCH] Commit z dnia 2024-07-24 17:22:48 --- .folder | 2 +- Resources/WSDL/PortTypeGet.process | 39 +++++++++++++++++++++++ Resources/WSDL/WSDL-service8.serviceagent | 1 + auto_commit_push.sh | 21 ++++++++++++ 4 files changed, 62 insertions(+), 1 deletion(-) create mode 100755 auto_commit_push.sh diff --git a/.folder b/.folder index 1919e68..b891fea 100644 --- a/.folder +++ b/.folder @@ -8,8 +8,8 @@ - + diff --git a/Resources/WSDL/PortTypeGet.process b/Resources/WSDL/PortTypeGet.process index ba720ec..fb7b692 100644 --- a/Resources/WSDL/PortTypeGet.process +++ b/Resources/WSDL/PortTypeGet.process @@ -2,6 +2,7 @@ + Resources/WSDL/PortTypeGet.process Start @@ -77,6 +78,30 @@ + + com.tibco.plugin.soap.SOAPSendReceiveActivity + ae.activities.SOAPSendReceiveUI + 220 + 156 + + 0 + SwA + Seconds + wsdlPfx:WSDL-service2 + PortTypeEndpoint2 + Get + NONE + + + + + com.tibco.plugin.timer.NullActivity + ae.activities.null + 452 + 256 + + + XMLGET Wait @@ -98,4 +123,18 @@ -16777216 always + + Start + SOAPRequestReply + Default + -16777216 + always + + + SOAPRequestReply + Null + Default + -16777216 + always + \ No newline at end of file diff --git a/Resources/WSDL/WSDL-service8.serviceagent b/Resources/WSDL/WSDL-service8.serviceagent index 6b72183..3aab45a 100644 --- a/Resources/WSDL/WSDL-service8.serviceagent +++ b/Resources/WSDL/WSDL-service8.serviceagent @@ -10,6 +10,7 @@ + Wed Jul 24 16:14:47 CEST 2024 PortType diff --git a/auto_commit_push.sh b/auto_commit_push.sh new file mode 100755 index 0000000..07f2193 --- /dev/null +++ b/auto_commit_push.sh @@ -0,0 +1,21 @@ +#!/bin/bash + +while true; do + # Sprawdzanie, czy są zmiany w repozytorium + if [[ -n $(git status --porcelain) ]]; then + echo "wykryto zmiane" + # Dodanie wszystkich zmian do obszaru roboczego + git add . + # Utworzenie commita z aktualną datą i czasem + COMMIT_MESSAGE="Commit z dnia $(date '+%Y-%m-%d %H:%M:%S')" + git commit -m "$COMMIT_MESSAGE" + + # Wypychanie zmian do zdalnego repozytorium + git push origin main # Zamień 'main' na 'master' lub inną nazwę gałęzi, jeśli jest inna + else + echo "Brak zmian do commitowania" + fi + + # Czekaj 10 minut (600 sekund) + sleep 10 +done