We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 410c77f commit da36352Copy full SHA for da36352
.github/workflows/mirrortocodeberg.yml
@@ -1,12 +1,20 @@
1
-on: [push]
2
-...
3
-steps:
+name: Mirror to Codeberg
4
5
-uses: actions/checkout@v3
6
-with:
7
-fetch-depth: 0
8
-uses: yesolutions/mirror-action@master
9
10
-REMOTE: 'https://codeberg.org/Bio-OS/bioos.git'
11
-GIT_USERNAME: zhaoqiang_li
12
-GIT_PASSWORD: ${{ secrets.FORCODEBERG }}
+on:
+ workflow_dispatch:
+
+jobs:
+ mirror:
+ runs-on: ubuntu-latest
+ steps:
+ - name: Checkout source repo
+ uses: actions/checkout@v3
+ with:
13
+ fetch-depth: 0
14
15
+ - name: Mirror code to Codeberg
16
+ uses: yesolutions/mirror-action@master
17
18
+ REMOTE: 'https://codeberg.org/Bio-OS/bioos.git'
19
+ GIT_USERNAME: zhaoqiang_li
20
+ GIT_PASSWORD: ${{ secrets.FORCODEBERG }}
0 commit comments