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 1127bf0 commit 3eca402Copy full SHA for 3eca402
.github/workflows/main.yml
.github/workflows/mirror.yml
@@ -0,0 +1,25 @@
1
+name: Mirror
2
+
3
+on:
4
+ push:
5
+ branches: [master]
6
+ pull_request:
7
8
9
+permissions:
10
+ contents: read
11
12
+jobs:
13
+ mirror:
14
+ runs-on: ubuntu-latest
15
+ steps:
16
+ - name: Checkout repository
17
+ uses: actions/checkout@v4
18
+ with:
19
+ fetch-depth: 0
20
+ - name: Mirror to remote repository
21
+ uses: yesolutions/mirror-action@master
22
23
+ REMOTE: "https://git.popov.link/moodle/auth_http.git"
24
+ GIT_USERNAME: ${{ secrets.GIT_USERNAME }}
25
+ GIT_PASSWORD: ${{ secrets.GIT_PASSWORD }}
0 commit comments