Skip to content

Commit

Permalink
ci: Dependabot (#1692)
Browse files Browse the repository at this point in the history
And accept more commit.

Co-authored-by: Pun Butrach <pun.butrach@gmail.com>
  • Loading branch information
BenjaminHalko and validcube committed Feb 18, 2024
1 parent 3b58d22 commit 25d53ce
Show file tree
Hide file tree
Showing 5 changed files with 1,137 additions and 911 deletions.
29 changes: 29 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
version: 2
updates:
- package-ecosystem: github-actions
labels: []
directory: /
target-branch: dev
schedule:
interval: monthly

- package-ecosystem: npm
labels: []
directory: /
target-branch: dev
schedule:
interval: monthly

- package-ecosystem: pub
labels: []
directory: /
target-branch: dev
schedule:
interval: monthly

- package-ecosystem: gradle
labels: [ "ReVanced Manager Compose" ]
directory: /
target-branch: compose-dev
schedule:
interval: monthly
5 changes: 5 additions & 0 deletions .github/workflows/release-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,11 @@ jobs:
java-version: "17"
distribution: "zulu"

- name: Set up Node.js 20
uses: actions/setup-node@v4
with:
node-version: '20'

- uses: subosito/flutter-action@v2
with:
channel: "stable"
Expand Down
8 changes: 7 additions & 1 deletion .releaserc.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,14 @@ module.exports = {
"plugins": [
[
"@semantic-release/commit-analyzer", {
"preset": "conventionalcommits",
"releaseRules": [
{ "type": "build", "scope": "Needs bump", "release": "patch" }
{ type: "style", release: "patch" },
{ type: "refactor", release: "patch" },
{ type: "perf", release: "patch" },
{ type: "build", release: "patch" },
{ type: "chore", release: "patch" },
{ type: "revert", release: "patch" }
]
}
],
Expand Down

0 comments on commit 25d53ce

Please sign in to comment.