We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d190b1d commit e1ca1caCopy full SHA for e1ca1ca
1 file changed
.github/workflows/sync.yaml
@@ -1,4 +1,4 @@
1
-name: Sync org → personal repo (exclude .github)
+name: Sync repository
2
3
# Trigger on every push (all branches)
4
on:
@@ -7,9 +7,8 @@ on:
7
- "**"
8
9
env:
10
- TARGET_OWNER: forrealdeveloper
11
- TARGET_REPO: learnverse-telegram-bot
12
- # Set MIRROR_ALL: 'true' if you want to mirror all refs & tags (destructive)
+ TARGET_OWNER: ${{ secrets.TARGET_OWNER }}
+ TARGET_REPO: ${{ secrets.TARGET_REPO }}
13
MIRROR_ALL: "false"
14
15
permissions:
@@ -61,8 +60,8 @@ jobs:
61
60
62
- name: Configure git
63
run: |
64
- git config user.name "github-actions[bot]"
65
- git config user.email "github-actions[bot]@users.noreply.github.com"
+ git config user.name "Learnverse Bot"
+ git config user.email "learnverse-bot@users.noreply.github.com"
66
67
- name: Push branch to personal repo (excluding .github)
68
0 commit comments