Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .github/workflows/component-deploy-v2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,11 @@ on:
required: false
type: string
description: 'ArgoCD application name prefix (without stage). Defaults to service-identifier. Used for kube-manifests lookup (apps/{argocd-app-name}/{stage}/...) and ArgoCD app name ({argocd-app-name}-{stage}).'
argocd-sync-wait-seconds:
required: false
default: 300
type: number
description: 'Timeout duration in seconds to wait for ArgoCD sync to apply'
secrets:
MANIFEST_REPO_PAT:
required: true
Expand Down Expand Up @@ -247,7 +252,7 @@ jobs:
app-name: ${{ format('{0}-{1}', inputs.argocd-app-name || inputs.service-identifier, inputs.stage) }}
auth-token: ${{ secrets.ARGOCD_TOKEN }}
revision: ${{ steps.manifest-sha.outputs.sha }}
timeout: 300
timeout: ${{ inputs.argocd-sync-wait-seconds }}
manifest-repo: monta-app/${{ inputs.repository-name || format('service-{0}', inputs.service-identifier) }}
github-token: ${{ secrets.MANIFEST_REPO_PAT }}
- name: Publish result message to slack
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/deploy-kotlin-v2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -271,6 +271,7 @@ jobs:
repository-name: ${{ inputs.repository-name }}
argocd-server: ${{ inputs.argocd-server }}
argocd-app-name: ${{ inputs.argocd-app-name }}
argocd-sync-wait-seconds: ${{ inputs.argocd-sync-wait-seconds }}
secrets:
MANIFEST_REPO_PAT: ${{ secrets.MANIFEST_REPO_PAT }}
SLACK_APP_TOKEN: ${{ secrets.SLACK_APP_TOKEN }}
Expand Down
Loading