We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bc105ef commit 2a3b560Copy full SHA for 2a3b560
.github/workflows/sync.yml
@@ -0,0 +1,24 @@
1
+name: sync
2
+
3
+# Controls when the workflow will run
4
+on:
5
+ # Trigger the workflow on all pushes
6
+ push:
7
+ branches:
8
+ - "**"
9
+ tags:
10
11
12
+ # Trigger the workflow when a branch or tag is deleted
13
+ delete: ~
14
15
+jobs:
16
+ # Calls a reusable CI workflow to sync the current with a remote repository.
17
+ # It will correctly handle addition of any new and removal of existing Git objects.
18
+ sync:
19
+ name: sync
20
+ uses: ecmwf-actions/reusable-workflows/.github/workflows/sync.yml@v2
21
+ secrets:
22
+ target_repository: eccodes/eccodes
23
+ target_username: ClonedDuck
24
+ target_token: ${{ secrets.BITBUCKET_PAT }}
0 commit comments