Skip to content

Commit 22b2951

Browse files
committed
workflows
1 parent 0b78567 commit 22b2951

File tree

2 files changed

+24
-3
lines changed

2 files changed

+24
-3
lines changed

.github/workflows/build.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,15 @@ jobs:
2323
with:
2424
fetch-depth: 10
2525

26-
- name: Set up JDK 17
26+
- name: Set up JDK 8, 16, 17, 21
2727
uses: actions/setup-java@v4
2828
with:
29-
java-version: 21
3029
distribution: temurin
30+
java-version: |
31+
8
32+
16
33+
17
34+
21
3135
3236
- uses: actions/cache@v4
3337
with:
@@ -44,4 +48,4 @@ jobs:
4448
run: chmod +x ./gradlew
4549

4650
- name: Build
47-
run: ./gradlew build --no-daemon
51+
run: ./gradlew build --no-daemon
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Mod-Project Integration
2+
3+
on:
4+
issues:
5+
types: [opened]
6+
pull_request:
7+
types: [opened]
8+
9+
jobs:
10+
add-to-project:
11+
name: Add issue/PR to project
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/[email protected]
15+
with:
16+
project-url: https://github.com/orgs/Polyfrost/projects/9
17+
github-token: ${{ secrets.ADD_TO_PROJECT_PAT }}

0 commit comments

Comments
 (0)