Skip to content

Commit cc02103

Browse files
Merge branch 'KelvinTegelaar:main' into main
2 parents ca3c94f + 1006052 commit cc02103

File tree

394 files changed

+11026
-5048
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

394 files changed

+11026
-5048
lines changed

.github/dependabot.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# To get started with Dependabot version updates, you'll need to specify which
2+
# package ecosystems to update and where the package manifests are located.
3+
# Please see the documentation for all configuration options:
4+
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
5+
6+
version: 2
7+
updates:
8+
- package-ecosystem: "npm" # See documentation for possible values
9+
directory: "/" # Location of package manifests
10+
schedule:
11+
interval: "weekly"
12+
target-branch: "dev"
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
---
2-
name: 'Assign Issue to Volunteer'
3-
on: [issue_comment] # yamllint disable-line rule:truthy
2+
name: "Assign Issue to Volunteer"
3+
on: [issue_comment] # yamllint disable-line rule:truthy
44
jobs:
55
build:
6-
runs-on: ubuntu-latest
6+
runs-on: ubuntu-slim
77
steps:
88
- uses: bhermann/issue-volunteer@v0.1.12
99
with:
10-
GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}'
10+
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"

.github/workflows/Check_for_Version_Update.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
build:
99
if: github.repository_owner == 'KelvinTegelaar'
1010
name: "Check for Version Update"
11-
runs-on: ubuntu-latest
11+
runs-on: ubuntu-slim
1212
steps:
1313
- name: Check for Changed Files
1414
uses: brettcannon/check-for-changed-files@v1.1.0
Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
---
2-
name: 'Close stale issues and PRs'
2+
name: "Close stale issues and PRs"
33
on:
44
schedule:
5-
- cron: '30 1 * * *'
5+
- cron: "30 1 * * *"
66
jobs:
77
stale:
88
if: github.repository_owner == 'KelvinTegelaar'
9-
runs-on: ubuntu-latest
9+
runs-on: ubuntu-slim
1010
steps:
1111
- uses: actions/stale@v4
1212
with:
13-
stale-issue-message: 'This issue is stale because it has been open 10 days with no activity. We will close this issue soon. If you want this feature implemented you can contribute it. See: https://docs.cipp.app/dev-documentation/contributing-to-the-code . Please notify the team if you are working on this yourself.'
14-
close-issue-message: 'This issue was closed because it has been stalled for 14 days with no activity.'
15-
stale-issue-label: 'no-activity'
16-
exempt-issue-labels: 'planned,bug,roadmap'
13+
stale-issue-message: "This issue is stale because it has been open 10 days with no activity. We will close this issue soon. If you want this feature implemented you can contribute it. See: https://docs.cipp.app/dev-documentation/contributing-to-the-code . Please notify the team if you are working on this yourself."
14+
close-issue-message: "This issue was closed because it has been stalled for 14 days with no activity."
15+
stale-issue-label: "no-activity"
16+
exempt-issue-labels: "planned,bug,roadmap"
1717
days-before-stale: 9
1818
days-before-close: 5

.github/workflows/Comment_on_Issues.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
jobs:
88
add-comment_bug:
99
if: github.repository_owner == 'KelvinTegelaar' && github.event.label.name == 'unconfirmed-by-user'
10-
runs-on: ubuntu-latest
10+
runs-on: ubuntu-slim
1111
permissions:
1212
issues: write
1313
steps:
@@ -18,5 +18,5 @@ jobs:
1818
body: |
1919
Thank you for reporting a potential bug. If you would like to work on this bug, please comment:
2020
> I would like to work on this please!
21-
21+
2222
Thank you for helping us maintain the project!

.github/workflows/Label_Issues.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,23 +7,23 @@ on:
77
jobs:
88
label_issues_bugs:
99
if: github.repository_owner == 'KelvinTegelaar' && contains(github.event.issue.title, 'Bug')
10-
runs-on: ubuntu-latest
10+
runs-on: ubuntu-slim
1111
permissions:
1212
issues: write
1313
steps:
1414
- name: Label Issues
1515
uses: andymckay/labeler@5c59dabdfd4dd5bd9c6e6d255b01b9d764af4414
1616
with:
17-
add-labels: 'not-assigned'
17+
add-labels: "not-assigned"
1818
repo-token: ${{ secrets.GITHUB_TOKEN }}
1919
label_issues_frs:
2020
if: github.repository_owner == 'KelvinTegelaar' && contains(github.event.issue.title, 'Feature')
21-
runs-on: ubuntu-latest
21+
runs-on: ubuntu-slim
2222
permissions:
2323
issues: write
2424
steps:
2525
- name: Label Issues
2626
uses: andymckay/labeler@5c59dabdfd4dd5bd9c6e6d255b01b9d764af4414
2727
with:
28-
add-labels: 'enhancement, not-assigned'
28+
add-labels: "enhancement, not-assigned"
2929
repo-token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/auto_comments.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88
jobs:
99
handle_comment:
10-
runs-on: ubuntu-latest
10+
runs-on: ubuntu-slim
1111
# We need permissions to modify issue comments.
1212
# 'issues: write' is required for deleting comments.
1313
permissions:
Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
---
21
name: Label Issues
32
on:
43
issues:
@@ -7,11 +6,13 @@ on:
76
jobs:
87
label_issues_bugs:
98
if: github.repository_owner == 'KelvinTegelaar' && contains(github.event.issue.title, 'Bug')
10-
runs-on: ubuntu-latest
9+
runs-on: ubuntu-slim
1110
permissions:
1211
issues: write
1312
steps:
1413
- name: Sponsor Labels
1514
uses: JasonEtco/is-sponsor-label-action@v1.2.0
1615
with:
17-
label: 'Sponsor Request'
16+
label: "Sponsor Priority"
17+
env:
18+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/pr_check.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ permissions:
1616

1717
jobs:
1818
check-branch:
19-
runs-on: ubuntu-latest
19+
runs-on: ubuntu-slim
2020
steps:
2121
- name: Check and Comment on PR
2222
# Only process fork PRs with specific branch conditions
@@ -46,14 +46,14 @@ jobs:
4646
}
4747
4848
message += '🔒 This PR will now be automatically closed due to the above rules.';
49-
49+
5050
// Post the comment
5151
await github.rest.issues.createComment({
5252
...context.repo,
5353
issue_number: context.issue.number,
5454
body: message
5555
});
56-
56+
5757
// Close the PR
5858
await github.rest.pulls.update({
5959
...context.repo,

next.config.js

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,13 @@ const config = {
44
images: {
55
unoptimized: true,
66
},
7-
webpack(config) {
8-
config.module.rules.push({
9-
test: /\.svg$/,
10-
use: ["@svgr/webpack"],
11-
});
12-
return config;
7+
turbopack: {
8+
rules: {
9+
"*.svg": {
10+
loaders: ["@svgr/webpack"],
11+
as: "*.js",
12+
},
13+
},
1314
},
1415
async redirects() {
1516
return [];

0 commit comments

Comments
 (0)