diff options
author | Valentin Popov <valentin@popov.link> | 2024-05-29 16:47:00 +0300 |
---|---|---|
committer | Valentin Popov <valentin@popov.link> | 2024-05-29 16:47:00 +0300 |
commit | fada2517bc98d79ce672704379e0776a6915d7b0 (patch) | |
tree | ab30dccb3a22c578f9ba2f046dde2dc1fa61c27e /.github/workflows | |
parent | 2e484a3809abd64dd290126214e4dc78999a24c9 (diff) | |
download | auth_token-master.tar.xz auth_token-master.zip |
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/main.yml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..7f4ed38 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,17 @@ +name: Workflow + +on: [push] + +jobs: + mirror: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + with: + fetch-depth: 0 + + - uses: yesolutions/mirror-action@master + with: + REMOTE: 'https://git.popov.link/moodle/auth_token.git' + GIT_USERNAME: ${{ secrets.GIT_USERNAME }} + GIT_PASSWORD: ${{ secrets.GIT_PASSWORD }} |