Skip to content

Commit 6d48710

Browse files
committed
regenerated metadata files
1 parent f65bda1 commit 6d48710

8 files changed

Lines changed: 32 additions & 57 deletions

File tree

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# <meta>
22
# <source>@pssbletrngle/github-meta-generator</source>
33
# <version>0.0.0-dev</version>
4-
# <timestamp>2026-03-10T20:23:33.326Z</timestamp>
4+
# <timestamp>2026-03-11T13:08:48.365Z</timestamp>
55
# </meta>
66

77
name: Bug Report

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# <meta>
22
# <source>@pssbletrngle/github-meta-generator</source>
33
# <version>0.0.0-dev</version>
4-
# <timestamp>2026-03-10T20:23:33.326Z</timestamp>
4+
# <timestamp>2026-03-11T13:08:48.365Z</timestamp>
55
# </meta>
66

77
blank_issues_enabled: false

.github/ISSUE_TEMPLATE/feature_request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# <meta>
22
# <source>@pssbletrngle/github-meta-generator</source>
33
# <version>0.0.0-dev</version>
4-
# <timestamp>2026-03-10T20:23:33.326Z</timestamp>
4+
# <timestamp>2026-03-11T13:08:48.365Z</timestamp>
55
# </meta>
66

77
name: Feature Request

.github/labeler.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# <meta>
22
# <source>@pssbletrngle/github-meta-generator</source>
33
# <version>0.0.0-dev</version>
4-
# <timestamp>2026-03-10T20:23:33.326Z</timestamp>
4+
# <timestamp>2026-03-11T13:08:48.365Z</timestamp>
55
# </meta>
66

77
neoforge:

.github/workflows/labeler.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# <meta>
22
# <source>@pssbletrngle/github-meta-generator</source>
33
# <version>0.0.0-dev</version>
4-
# <timestamp>2026-03-10T20:23:33.326Z</timestamp>
4+
# <timestamp>2026-03-11T13:08:48.365Z</timestamp>
55
# </meta>
66

77
name: "Issue Labeler"

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# <meta>
22
# <source>@pssbletrngle/github-meta-generator</source>
33
# <version>0.0.0-dev</version>
4-
# <timestamp>2026-03-10T20:23:33.326Z</timestamp>
4+
# <timestamp>2026-03-11T13:08:48.365Z</timestamp>
55
# </meta>
66

77
name: Release

.github/workflows/sonar.yml

Lines changed: 0 additions & 49 deletions
This file was deleted.

.github/workflows/test.yml

Lines changed: 26 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# <meta>
22
# <source>@pssbletrngle/github-meta-generator</source>
33
# <version>0.0.0-dev</version>
4-
# <timestamp>2026-03-10T20:23:33.326Z</timestamp>
4+
# <timestamp>2026-03-11T13:08:48.365Z</timestamp>
55
# </meta>
66

77
name: Test
@@ -18,6 +18,13 @@ on:
1818
pull_request:
1919
types: [opened, synchronize]
2020

21+
push:
22+
branches:
23+
- "[0-9]+.[0-9]+.[0-9x]+"
24+
- "neoforge/[0-9]+.[0-9]+.[0-9x]+"
25+
- "fabric/[0-9]+.[0-9]+.[0-9x]+"
26+
- "forge/[0-9]+.[0-9]+.[0-9x]+"
27+
2128
env:
2229
CI: true
2330

@@ -34,6 +41,8 @@ jobs:
3441
steps:
3542
- name: Checkout
3643
uses: actions/checkout@v4
44+
with:
45+
fetch-depth: 0
3746

3847
- uses: actions/setup-java@v4
3948
with:
@@ -42,9 +51,24 @@ jobs:
4251

4352
- uses: gradle/actions/setup-gradle@v4
4453

45-
- name: Build
54+
- name: Cache SonarQube packages
55+
if: ${{ github.event_name == 'push' }}
56+
uses: actions/cache@v4
57+
with:
58+
path: ~/.sonar/cache
59+
key: ${{ runner.os }}-sonar
60+
restore-keys: ${{ runner.os }}-sonar
61+
62+
- name: Test
4663
run: ./gradlew build check
4764

65+
- name: Analyze
66+
if: ${{ github.event_name == 'push' }}
67+
run: ./gradlew sonar
68+
env:
69+
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
70+
SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }}
71+
4872
- uses: actions/upload-artifact@v4
4973
if: ${{ inputs.upload }}
5074
with:

0 commit comments

Comments
 (0)