Compare commits

..

22 Commits

Author SHA1 Message Date
208356f9db test(mE9aBNXB): Auto-Update Zufallsstring mE9aBNXB
All checks were successful
Create Release / release (push) Successful in 8s
2025-05-29 14:31:15 +02:00
95e5b61607 test(LRyWVE5y): Auto-Update Zufallsstring LRyWVE5y 2025-05-29 14:31:14 +02:00
ac1428a65e test(11sK5cBR): Auto-Update Zufallsstring 11sK5cBR 2025-05-29 14:31:13 +02:00
4a7553b68e style(33ibipFg): Auto-Update Zufallsstring 33ibipFg 2025-05-29 14:31:13 +02:00
faee4ab40f style(Ijvpwkek): Auto-Update Zufallsstring Ijvpwkek 2025-05-29 14:31:12 +02:00
ce70420ce7 style(ThZEYUjn): Auto-Update Zufallsstring ThZEYUjn 2025-05-29 14:31:11 +02:00
bd1409e77b refactor(5JMWa9i3): Auto-Update Zufallsstring 5JMWa9i3 2025-05-29 14:31:11 +02:00
2de3086819 refactor(861uEy6f): Auto-Update Zufallsstring 861uEy6f 2025-05-29 14:31:10 +02:00
61d7b1d8f7 refactor(RkvODk4K): Auto-Update Zufallsstring RkvODk4K 2025-05-29 14:31:09 +02:00
1d9e63a84c fix(KexTNSMP): Auto-Update Zufallsstring KexTNSMP 2025-05-29 14:31:08 +02:00
aedf49b0f3 fix(YHCfK5DV): Auto-Update Zufallsstring YHCfK5DV 2025-05-29 14:31:08 +02:00
606aeb20d3 fix(TDEZGpBC): Auto-Update Zufallsstring TDEZGpBC 2025-05-29 14:31:07 +02:00
8b9a94e28f feat(JCh80wIn): Auto-Update Zufallsstring JCh80wIn 2025-05-29 14:31:06 +02:00
11f252fb12 feat(SSgqTQLE): Auto-Update Zufallsstring SSgqTQLE 2025-05-29 14:31:05 +02:00
3b5ebf6c27 feat(w12pw7xZ): Auto-Update Zufallsstring w12pw7xZ 2025-05-29 14:30:59 +02:00
776f01a672 docs(l8Hgk0XW): Auto-Update Zufallsstring l8Hgk0XW 2025-05-29 14:30:58 +02:00
eaebf686eb docs(UVjx6TQj): Auto-Update Zufallsstring UVjx6TQj 2025-05-29 14:30:57 +02:00
83b84d2687 docs(NSpeZu7J): Auto-Update Zufallsstring NSpeZu7J 2025-05-29 14:30:56 +02:00
66b3b03290 chore(VOfcmwh4): Auto-Update Zufallsstring VOfcmwh4 2025-05-29 14:30:56 +02:00
9e65f48123 chore(hT0eHTsv): Auto-Update Zufallsstring hT0eHTsv 2025-05-29 14:30:55 +02:00
bd101f9e0a chore(nfMmqgR2): Auto-Update Zufallsstring nfMmqgR2 2025-05-29 14:30:51 +02:00
6a5fa42239 fix(autopost): Script angepasst 2025-05-29 14:30:31 +02:00
2 changed files with 44 additions and 8 deletions

View File

@ -39,3 +39,24 @@ DYDaz9Tr
8msBEIxm
mxNdbHzm
FUlNIQKk
nfMmqgR2
hT0eHTsv
VOfcmwh4
NSpeZu7J
UVjx6TQj
l8Hgk0XW
w12pw7xZ
SSgqTQLE
JCh80wIn
TDEZGpBC
YHCfK5DV
KexTNSMP
RkvODk4K
861uEy6f
5JMWa9i3
ThZEYUjn
Ijvpwkek
33ibipFg
11sK5cBR
LRyWVE5y
mE9aBNXB

View File

@ -24,16 +24,31 @@ fi
new_tag="v${new_major}.0.0"
# Drei zufällige Änderungen durchführen
for i in {1..3}; do
#for i in {1..3}; do
# random_string=$(head /dev/urandom | tr -dc A-Za-z0-9 | head -c 8)
# echo "Zufallsstring $i: $random_string"
# echo "$random_string" >> "$README_FILE"
#
# git add "$README_FILE"
# git commit -m "feat($random_string): Auto-Update Zufallsstring $random_string"
# git push
#done
TYPES=(chore docs feat fix refactor style test)
for type in "${TYPES[@]}"; do
for i in {1..3}; do
random_string=$(head /dev/urandom | tr -dc A-Za-z0-9 | head -c 8)
echo "Zufallsstring $i: $random_string"
echo "Zufallsstring $i für Typ '$type': $random_string"
echo "$random_string" >> "$README_FILE"
git add "$README_FILE"
git commit -m "feat($i): Auto-Update $i: Zufallsstring $random_string"
git commit -m "$type($random_string): Auto-Update Zufallsstring $random_string"
git push
done
done
# Tag erstellen und pushen
git tag "$new_tag"
git push origin "$new_tag"