diff options
author | Valentin Popov <valentin@popov.link> | 2025-02-01 17:12:29 +0300 |
---|---|---|
committer | Valentin Popov <valentin@popov.link> | 2025-02-01 17:12:29 +0300 |
commit | 0bba3fe744aef5335c57e94547a514a89727b077 (patch) | |
tree | 5e29c1a250cb2efbed8739044fb242f6e08791ff | |
parent | f826ef31c74953a9fa0101b8b483ae4b004f2adb (diff) | |
download | popov.link-0bba3fe744aef5335c57e94547a514a89727b077.tar.xz popov.link-0bba3fe744aef5335c57e94547a514a89727b077.zip |
Updated CI parameters & Added mirror
-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 }} |