Skip to content

Commit a8c911a

Browse files
committed
chore: Update repo org, update gradle wrapper validation
1 parent e93e3df commit a8c911a

7 files changed

Lines changed: 12 additions & 12 deletions

File tree

.github/workflows/label-issues.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
uses: TwelveIterations/github-issue-parser@main
1919
id: issue-parser
2020
with:
21-
template-path: https://raw.githubusercontent.com/TwelveIterationMods/.github/refs/heads/main/.github/ISSUE_TEMPLATE/${{ matrix.template }}
21+
template-path: https://raw.githubusercontent.com/TwelveIterations/.github/refs/heads/main/.github/ISSUE_TEMPLATE/${{ matrix.template }}
2222

2323
- name: Set labels based on component field
2424
uses: redhat-plumbers-in-action/advanced-issue-labeler@d498805e5c7c0658e336948b3363480bcfd68da6

.github/workflows/manage-labels.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@ jobs:
2525
with:
2626
dry: ${{ inputs.dry }}
2727
remove_missing: ${{ inputs.remove_missing }}
28-
source: https://raw.githubusercontent.com/TwelveIterationMods/.github/refs/heads/main/labels.yaml
28+
source: https://raw.githubusercontent.com/TwelveIterations/.github/refs/heads/main/labels.yaml
2929
env:
3030
GITHUB_TOKEN: ${{ github.token }}

.github/workflows/publish-release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
run: echo "version=$(cat gradle.properties | grep -w "\bversion" | cut -d= -f2)" >> $GITHUB_OUTPUT
3535
id: extract-version
3636
- name: Bumping version
37-
uses: TwelveIterationMods/bump-version@v1
37+
uses: TwelveIterations/bump-version@v1
3838
with:
3939
version: ${{ steps.extract-version.outputs.version }}
4040
bump: patch
@@ -94,7 +94,7 @@ jobs:
9494
with:
9595
ref: ${{ needs.create-release.outputs.ref }}
9696
- name: Validate gradle wrapper
97-
uses: gradle/actions/wrapper-validation@v3
97+
uses: gradle/actions/wrapper-validation@v5
9898
- name: Setup JDK
9999
uses: actions/setup-java@v4
100100
with:
@@ -122,7 +122,7 @@ jobs:
122122
with:
123123
ref: ${{ needs.create-release.outputs.ref }}
124124
- name: Validate gradle wrapper
125-
uses: gradle/actions/wrapper-validation@v3
125+
uses: gradle/actions/wrapper-validation@v5
126126
- name: Setup JDK
127127
uses: actions/setup-java@v4
128128
with:
@@ -162,7 +162,7 @@ jobs:
162162
name: ${{ matrix.loader }}-artifact
163163
path: ${{ matrix.loader }}/build
164164
- name: Validate gradle wrapper
165-
uses: gradle/actions/wrapper-validation@v3
165+
uses: gradle/actions/wrapper-validation@v5
166166
- name: Setup JDK
167167
uses: actions/setup-java@v4
168168
with:

.github/workflows/publish-snapshot.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
- name: Checkout repository
3838
uses: actions/checkout@v4
3939
- name: Validate gradle wrapper
40-
uses: gradle/actions/wrapper-validation@v3
40+
uses: gradle/actions/wrapper-validation@v5
4141
- name: Setup JDK
4242
uses: actions/setup-java@v4
4343
with:
@@ -50,7 +50,7 @@ jobs:
5050
run: echo "version=$(cat gradle.properties | grep -w "\bversion" | cut -d= -f2)" >> $GITHUB_OUTPUT
5151
id: extract-version
5252
- name: Bumping version
53-
uses: TwelveIterationMods/bump-version@v1
53+
uses: TwelveIterations/bump-version@v1
5454
with:
5555
version: ${{ steps.extract-version.outputs.version }}
5656
bump: patch

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Minecraft Mod. Adds a cooking book and multiblock kitchens that only shows recip
1717
## Contributing
1818

1919
If you're interested in contributing to the mod, you can check
20-
out [issues labelled as "help wanted"](https://github.com/TwelveIterationMods/CookingForBlockheads/issues?q=is%3Aopen+is%3Aissue+label%3A%22help+wanted%22).
20+
out [issues labelled as "help wanted"](https://github.com/TwelveIterations/CookingForBlockheads/issues?q=is%3Aopen+is%3Aissue+label%3A%22help+wanted%22).
2121

2222
When it comes to new features, it's best to confer with me first to ensure we share the same vision. You can join us on [Discord](https://discord.gg/VAfZ2Nau6j) if you'd like to talk.
2323

fabric/src/main/resources/fabric.mod.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
],
1212
"contact": {
1313
"homepage": "https://mods.twelveiterations.com/mc/cookingforblockheads",
14-
"sources": "https://github.com/TwelveIterationMods/CookingForBlockheads",
15-
"issues": "https://github.com/TwelveIterationMods/CookingForBlockheads/issues"
14+
"sources": "https://github.com/TwelveIterations/CookingForBlockheads",
15+
"issues": "https://github.com/TwelveIterations/CookingForBlockheads/issues"
1616
},
1717

1818
"license": "All Rights Reserved",

forge/src/main/resources/META-INF/mods.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
modLoader="javafml"
22
loaderVersion="${forge_loader_version_range}"
33
license="All rights reserved"
4-
issueTrackerURL="https://github.com/TwelveIterationMods/CookingForBlockheads/issues"
4+
issueTrackerURL="https://github.com/TwelveIterations/CookingForBlockheads/issues"
55

66
[[mods]]
77
modId="cookingforblockheads"

0 commit comments

Comments
 (0)