diff options
author | Valentin Popov <valentin@popov.link> | 2024-05-29 17:12:20 +0300 |
---|---|---|
committer | Valentin Popov <valentin@popov.link> | 2024-05-29 17:12:20 +0300 |
commit | fe85ed91d71643b1d5c1759bc89f586739aee2ad (patch) | |
tree | 85fe55321512004a69ce0227ec8746dbcbfa2d09 /.github/workflows/main.yml | |
parent | 6587de6ea891d7f2ede4593b9b9fe4bdca1ac839 (diff) | |
download | eslint-config-master.tar.xz eslint-config-master.zip |
Diffstat (limited to '.github/workflows/main.yml')
-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..f7112b5 --- /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/eslint-config.git' + GIT_USERNAME: ${{ secrets.GIT_USERNAME }} + GIT_PASSWORD: ${{ secrets.GIT_PASSWORD }} |