aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Anshul Gupta <ansg191@anshulg.com> 2024-09-28 22:08:31 -0700
committerGravatar GitHub <noreply@github.com> 2024-09-28 22:08:31 -0700
commit77b101408adc80113374167bed3b73552df699ce (patch)
treee4daa44b49a637030c8d00c12be483cc8aed459a
parent452b8cc030c89e0531b198159462a5d39ac09e76 (diff)
parentabffe919d6d3853b3d99acd1f53b3745ba8dca0b (diff)
downloadpandascore-77b101408adc80113374167bed3b73552df699ce.tar.gz
pandascore-77b101408adc80113374167bed3b73552df699ce.tar.zst
pandascore-77b101408adc80113374167bed3b73552df699ce.zip
Merge pull request #45 from ansg191/revert-renovate
revert: ci(deps): switch to renovate
-rw-r--r--.github/dependabot.yml10
-rw-r--r--.github/renovate.js3
-rw-r--r--.github/workflows/renovate.yaml30
-rw-r--r--renovate.json13
4 files changed, 10 insertions, 46 deletions
diff --git a/.github/dependabot.yml b/.github/dependabot.yml
new file mode 100644
index 0000000..27da349
--- /dev/null
+++ b/.github/dependabot.yml
@@ -0,0 +1,10 @@
+version: 2
+updates:
+ - package-ecosystem: "github-actions"
+ directory: "/"
+ schedule:
+ interval: "weekly"
+ - package-ecosystem: cargo
+ directory: "/"
+ schedule:
+ interval: "daily"
diff --git a/.github/renovate.js b/.github/renovate.js
deleted file mode 100644
index e1ffecb..0000000
--- a/.github/renovate.js
+++ /dev/null
@@ -1,3 +0,0 @@
-module.exports = {
- repositories: ['ansg191/pandascore'],
-};
diff --git a/.github/workflows/renovate.yaml b/.github/workflows/renovate.yaml
deleted file mode 100644
index 7e1b160..0000000
--- a/.github/workflows/renovate.yaml
+++ /dev/null
@@ -1,30 +0,0 @@
-name: Renovate
-
-on:
- schedule:
- - cron: "0 4 * * *"
- workflow_dispatch:
-
-jobs:
- renovate:
- runs-on: ubuntu-latest
- steps:
- - name: Checkout
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
-
- - name: Get Token
- id: get_token
- uses: actions/create-github-app-token@5d869da34e18e7287c1daad50e0b8ea0f506ce69 # v1
- with:
- private-key: ${{ secrets.private_key }}
- app-id: ${{ secrets.app_id }}
- owner: ${{ github.repository_owner }}
- repositories: 'anshulg-cluster'
-
- - name: Renovate
- uses: renovatebot/github-action@e1db501385ddcccbaae6fb9c06befae04f379f23 # v40.2.10
- with:
- configurationFile: .github/renovate.js
- token: '${{ steps.get_token.outputs.token }}'
- env:
- LOG_LEVEL: 'debug'
diff --git a/renovate.json b/renovate.json
deleted file mode 100644
index ea81a9b..0000000
--- a/renovate.json
+++ /dev/null
@@ -1,13 +0,0 @@
-{
- "$schema": "https://docs.renovatebot.com/renovate-schema.json",
- "extends": [
- "config:best-practices"
- ],
- "prHourlyLimit": 0,
- "prConcurrentLimit": 0,
- "platformCommit": "enabled",
- "rebaseWhen": "behind-base-branch",
- "pre-commit": {
- "enabled": true
- }
-}