Vault Sync App Pipeline #5560
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
name: Vault Sync App Pipeline | |
# Run this workflow every time a new commit pushed to main and on a schedule | |
on: | |
schedule: | |
- cron: "45 * * * *" | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
Development: | |
uses: ./.github/workflows/vault-sync-app-runner.yml | |
with: | |
name: Development | |
secrets: inherit | |
Test: | |
uses: ./.github/workflows/vault-sync-app-runner.yml | |
with: | |
name: Test | |
secrets: inherit | |
needs: Development | |
Production: | |
uses: ./.github/workflows/vault-sync-app-runner.yml | |
with: | |
name: Production | |
secrets: inherit | |
needs: Test |