Merge pull request #257 from i5okie/crunchy-upgrade/test #97
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: Sync Changes to GitOps Repo | |
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
sync_changes: | |
runs-on: ubuntu-latest | |
if: github.repository_owner == 'bcgov' | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Checkout GitOps repo | |
uses: actions/checkout@v4 | |
with: | |
repository: bcgov-c/ministry-gitops-ditp | |
ssh-key: ${{ secrets.DITP_GITOPS_REPO_SECRET }} | |
sparse-checkout: | | |
services | |
path: ministry-gitops-ditp | |
- name: Copy changes | |
run: | | |
rsync -avz --delete ./services/ ./ministry-gitops-ditp/services/ | |
- name: Commit and push changes | |
run: | | |
cd ministry-gitops-ditp | |
git config user.name "github-actions[bot]" | |
git config user.email "github-actions[bot]@users.noreply.github.com" | |
git add . | |
git commit -m "Sync changes from trust-over-ip-configurations" || echo "No changes to commit" | |
git push |