diff options
-rw-r--r-- | .github/renovate.json (renamed from .renovaterc) | 5 | ||||
-rw-r--r-- | .github/workflows/mirror.yml | 15 |
2 files changed, 18 insertions, 2 deletions
diff --git a/.renovaterc b/.github/renovate.json index 46fc70b..e2ee477 100644 --- a/.renovaterc +++ b/.github/renovate.json @@ -1,9 +1,9 @@ { + "$schema": "https://docs.renovatebot.com/renovate-schema.json", "extends": [ "config:recommended", ":disableDependencyDashboard" ], - "automerge": true, "packageRules": [ { "groupName": "all digest updates", @@ -16,7 +16,8 @@ ], "matchPackageNames": [ "*" - ] + ], + "automerge": true } ] } diff --git a/.github/workflows/mirror.yml b/.github/workflows/mirror.yml new file mode 100644 index 0000000..f85936a --- /dev/null +++ b/.github/workflows/mirror.yml @@ -0,0 +1,15 @@ +name: Mirror +on: [push] + +jobs: + mirror: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + with: + fetch-depth: 0 + - uses: yesolutions/mirror-action@master + with: + REMOTE: 'https://git.popov.link/popov.link.git' + GIT_USERNAME: ${{ secrets.GIT_USERNAME }} + GIT_PASSWORD: ${{ secrets.GIT_PASSWORD }} |