sync #113015
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 | |
on: | |
schedule: | |
- cron: '*/5 * * * *' | |
jobs: | |
examples: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
path: examples | |
- uses: actions/checkout@v3 | |
with: | |
repository: pipe-cd/pipecd | |
path: pipecd | |
- run: | | |
git -C pipecd rev-parse HEAD > examples/HEAD.txt | |
cd examples | |
rm -rf cloudrun deployment-chain ecs kubernetes lambda local-modules terraform | |
cp -rf ../pipecd/examples/cloudrun . | |
cp -rf ../pipecd/examples/deployment-chain . | |
cp -rf ../pipecd/examples/ecs . | |
cp -rf ../pipecd/examples/kubernetes . | |
cp -rf ../pipecd/examples/lambda . | |
cp -rf ../pipecd/examples/local-modules . | |
cp -rf ../pipecd/examples/terraform . | |
cp -rf ../pipecd/examples/README.remote.md README.md | |
if [[ -z `git status --porcelain` ]]; then | |
exit | |
fi | |
git config user.name pipecd-bot | |
git config user.email 62555040+pipecd-bot@users.noreply.github.com | |
git add . | |
git commit -m "Sync with pipe-cd/pipecd repository at $(<HEAD.txt)" | |
git push |