We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
alpha
1 parent 8150ced commit 341de05Copy full SHA for 341de05
.github/workflows/beta-sync.yml renamed to .github/workflows/sync.yml
@@ -1,4 +1,4 @@
1
-name: Beta Sync
+name: Sync
2
3
on:
4
push:
@@ -8,7 +8,7 @@ permissions:
8
contents: write
9
10
jobs:
11
- sync:
+ beta:
12
runs-on: ubuntu-latest
13
steps:
14
- name: Checkout
@@ -23,3 +23,18 @@ jobs:
23
git checkout beta
24
git pull --rebase origin main
25
git push -f
26
+ alpha:
27
+ runs-on: ubuntu-latest
28
+ steps:
29
+ - name: Checkout
30
+ uses: actions/checkout@v4
31
+ with:
32
+ fetch-depth: 0
33
+
34
+ - name: Sync
35
+ env:
36
+ ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
37
+ run: |
38
+ git checkout alpha
39
+ git pull --rebase origin main
40
+ git push -f
0 commit comments