aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorValentin Popov <valentin@popov.link>2025-02-01 17:12:29 +0300
committerValentin Popov <valentin@popov.link>2025-02-01 17:12:29 +0300
commit0bba3fe744aef5335c57e94547a514a89727b077 (patch)
tree5e29c1a250cb2efbed8739044fb242f6e08791ff /.github
parentf826ef31c74953a9fa0101b8b483ae4b004f2adb (diff)
downloadpopov.link-0bba3fe744aef5335c57e94547a514a89727b077.tar.xz
popov.link-0bba3fe744aef5335c57e94547a514a89727b077.zip
Updated CI parameters & Added mirror
Diffstat (limited to '.github')
-rw-r--r--.github/renovate.json23
-rw-r--r--.github/workflows/mirror.yml15
2 files changed, 38 insertions, 0 deletions
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 }}