We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a7c25e4 commit baaf2feCopy full SHA for baaf2fe
1 file changed
.github/workflows/event-mirror.yml
@@ -0,0 +1,21 @@
1
+name: Mirror Release
2
+
3
+on:
4
+ release:
5
+ types: [published]
6
7
+jobs:
8
+ mirror:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - uses: actions/checkout@v3
12
+ with:
13
+ fetch-depth: 0
14
+ - uses: RediSearch/branch-mirroring-action@v1
15
16
+ target_repo_url:
17
+ ${{ vars.MIRROR_TARGET_REPO_URL }}
18
+ ssh_private_key:
19
+ ${{ secrets.MIRROR_TARGET_REPO_SSH_PRIVATE_KEY }}
20
+ source_branch_id:
21
+ ${{ github.ref_name }}
0 commit comments