From 0bba3fe744aef5335c57e94547a514a89727b077 Mon Sep 17 00:00:00 2001 From: Valentin Popov Date: Sat, 1 Feb 2025 18:12:29 +0400 Subject: Updated CI parameters & Added mirror --- .github/renovate.json | 23 +++++++++++++++++++++++ .github/workflows/mirror.yml | 15 +++++++++++++++ .renovaterc | 22 ---------------------- 3 files changed, 38 insertions(+), 22 deletions(-) create mode 100644 .github/renovate.json create mode 100644 .github/workflows/mirror.yml delete mode 100644 .renovaterc diff --git a/.github/renovate.json b/.github/renovate.json new file mode 100644 index 0000000..e2ee477 --- /dev/null +++ b/.github/renovate.json @@ -0,0 +1,23 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": [ + "config:recommended", + ":disableDependencyDashboard" + ], + "packageRules": [ + { + "groupName": "all digest updates", + "groupSlug": "all-digest", + "matchUpdateTypes": [ + "minor", + "patch", + "pin", + "digest" + ], + "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 }} diff --git a/.renovaterc b/.renovaterc deleted file mode 100644 index 46fc70b..0000000 --- a/.renovaterc +++ /dev/null @@ -1,22 +0,0 @@ -{ - "extends": [ - "config:recommended", - ":disableDependencyDashboard" - ], - "automerge": true, - "packageRules": [ - { - "groupName": "all digest updates", - "groupSlug": "all-digest", - "matchUpdateTypes": [ - "minor", - "patch", - "pin", - "digest" - ], - "matchPackageNames": [ - "*" - ] - } - ] -} -- cgit v1.2.3