21 Commits

Author SHA1 Message Date
2a6b52c461 Merge pull request 'fix-again' (#55) from fix-again into main
Reviewed-on: #55
2025-11-19 09:50:23 +00:00
d4987ff717 Merge branch 'main' into fix-again 2025-11-19 09:50:17 +00:00
feb7bf12ed Merge branch 'fix-again' of bb.hublab.ru:HUB/workflows into fix-again 2025-11-19 12:49:58 +03:00
99393d16ce try to fix 2025-11-19 12:49:52 +03:00
2a74089e37 Merge pull request 'fix-again' (#54) from fix-again into main
Reviewed-on: #54
2025-11-19 09:13:38 +00:00
3398c4f76f Merge branch 'main' into fix-again 2025-11-19 09:13:30 +00:00
26a57c2206 Merge branch 'fix-again' of bb.hublab.ru:HUB/workflows into fix-again 2025-11-19 12:13:19 +03:00
38d562af9a return 2025-11-19 12:13:16 +03:00
64eb83f489 Merge pull request 'just fix' (#53) from fix-again into main
Reviewed-on: #53
2025-11-19 09:02:24 +00:00
8ebded5c3f Merge branch 'main' into fix-again 2025-11-19 09:02:16 +00:00
ae79a067c4 just fix 2025-11-19 12:01:42 +03:00
6319fea371 Merge pull request 'return' (#52) from fix-again into main
Reviewed-on: #52
2025-11-19 08:41:58 +00:00
768a35108a Merge branch 'main' into fix-again 2025-11-19 08:41:36 +00:00
cc4ec94402 test 2025-11-19 11:41:17 +03:00
872706e2b6 Merge pull request 'try with new mask' (#51) from fix-again into main
Reviewed-on: #51
2025-11-19 08:23:37 +00:00
d4604aa6fb try with new mask 2025-11-19 11:23:10 +03:00
2e82989ca0 Merge pull request 'change sync option' (#50) from change-deploy into main
Reviewed-on: #50
2025-11-19 07:56:12 +00:00
a67aaf3ca9 Merge branch 'main' into change-deploy 2025-11-19 07:47:47 +00:00
5ac880d37d fix 2025-11-19 10:46:30 +03:00
fd5d7e2cd4 change sync option 2025-11-19 10:42:28 +03:00
3c01a716e6 Merge pull request 'new deploy condition' (#49) from new_notify into main
Reviewed-on: #49
2025-11-11 11:10:15 +00:00

View File

@@ -45,7 +45,15 @@ runs:
uses: clowdhaus/argo-cd-action/@main
with:
version: 3.1.3
command: app sync ${{ inputs.environment }} --resource 'apps:Deployment:*'
command: app sync ${{ inputs.environment }} --resource apps:Deployment:${{ github.event.repository.name }}*
- name: Sync related deployments
shell: bash
run: |
for name in $(argocd app resources ${{ inputs.environment }} | grep Deploy | grep ${{ github.event.repository.name }} | awk '{print($4)}'); do
echo "Syncing $name"
argocd app sync ${{ inputs.environment }} --resource "$name"
done
- name: Refresh secret
uses: clowdhaus/argo-cd-action/@main
with: