Skip to content

Commit 377705b

Browse files
Merge branch 'master' into 26.1
2 parents 8efb182 + 343d481 commit 377705b

File tree

3 files changed

+29
-0
lines changed

3 files changed

+29
-0
lines changed

.github/workflows/gradle.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on:
44
push:
55
branches-ignore:
66
- "dependabot/**"
7+
- "modrinth_deps/**"
78
tags-ignore:
89
- "**"
910
paths:
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Update Modrinth Dependencies
2+
3+
on:
4+
schedule:
5+
- cron: "0 0 * * *"
6+
workflow_dispatch:
7+
8+
jobs:
9+
update-deps:
10+
runs-on: ubuntu-latest
11+
strategy:
12+
fail-fast: false
13+
matrix:
14+
branch: ['master', '26.1']
15+
steps:
16+
- name: Checkout
17+
uses: actions/checkout@v6
18+
with:
19+
ref: ${{ matrix.branch }}
20+
21+
- name: Update Modrinth Dependencies
22+
uses: Wurst-Imperium/update-modrinth-deps@v1
23+
with:
24+
token: ${{ secrets.UMD_PR_TOKEN }}

modrinth_deps.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"fabric_api_version": "fabric-api",
3+
"sodium_version": "sodium"
4+
}

0 commit comments

Comments
 (0)