Skip to content

Commit

Permalink
fix: keep .env during repo sync (#2156)
Browse files Browse the repository at this point in the history
  • Loading branch information
ennru authored May 31, 2024
1 parent d957ceb commit 4c095e2
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/samples-repo-sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,17 @@ jobs:
run: |
rsync -r --delete kalix-jvm-sdk/samples/${{ matrix.sample }}/* ${{ matrix.public-repo }}
- name: Explicitly add the .env file
run: |
git config user.name 'Kalix Bot'
git config user.email '[email protected]'
git add .env
git commit -m "Keep .env"
- name: Create Pull Request - ${{ matrix.public-repo }}
uses: peter-evans/create-pull-request@153407881ec5c347639a548ade7d8ad1d6740e38
# https://github.com/peter-evans/create-pull-request
# v6.0.5
uses: peter-evans/create-pull-request@6d6857d36972b65feb161a90e484f2984215f83e
with:
path: ${{ matrix.public-repo }}
title: Changes from JVM SDK repo
Expand Down

0 comments on commit 4c095e2

Please sign in to comment.