We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7d9051a commit bf56fccCopy full SHA for bf56fcc
1 file changed
.github/workflows/sync.yml
@@ -18,16 +18,16 @@ jobs:
18
run: git clone https://x-access-token:${PATH_TOKEN}@github.com/Heexy/produc-docs.git producdocs
19
20
- name: Copy files
21
- run: rsync -a --delete --exclude='.git' ./ producdocs/
+ run: rsync -a --delete --exclude='.github' ./ producdocs/
22
shell: bash
23
24
- name: Commit and push changes
25
working-directory: producdocs
26
env:
27
PATH_TOKEN: ${{ secrets.PATH_TOKEN }}
28
run: |
29
- git config user.name "github-actions"
30
- git config user.email "actions@github.com"
+ git config user.name "github-actions[bot]"
+ git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
31
git add .
32
if ! git diff --cached --quiet; then
33
git commit -m "Sync docs from docs repo"
0 commit comments