diff options
author | Valentin Popov <valentin@popov.link> | 2024-05-29 16:04:47 +0300 |
---|---|---|
committer | Valentin Popov <valentin@popov.link> | 2024-05-29 16:04:47 +0300 |
commit | 9154cdd4bbbd7eb3a4ca2eca02b0a1a2c9c614be (patch) | |
tree | 4200610c126daceb714ce85331064c6b800343f6 | |
parent | 7f9f743f6a0a899a5c045ebbe0911a8f89056909 (diff) | |
download | bbb2json-master.tar.xz bbb2json-master.zip |
-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..8395050 --- /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/bbb2json.git' + GIT_USERNAME: ${{ secrets.GIT_USERNAME }} + GIT_PASSWORD: ${{ secrets.GIT_PASSWORD }} |