Skip to content

Commit bf40639

Browse files
committed
chore: merge branch 'main' into two-columns
2 parents 7b3258c + d6c497e commit bf40639

38 files changed

+2857
-541
lines changed

.github/dependabot.yml

Lines changed: 39 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,48 @@
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
71
updates:
8-
- package-ecosystem: "pip" # See documentation for possible values
9-
directory: "/" # Location of package manifests
2+
- directory: "/"
3+
groups:
4+
python-minor-and-patch:
5+
update-types:
6+
- "minor"
7+
- "patch"
8+
package-ecosystem: "pip"
109
schedule:
10+
day: "saturday"
1111
interval: "weekly"
12-
- package-ecosystem: "gomod" # See documentation for possible values
13-
directory: "/" # Location of package manifests
12+
time: "03:00"
13+
timezone: "America/Chicago"
14+
15+
- directory: "/"
16+
groups:
17+
go-minor-and-patch:
18+
update-types:
19+
- "minor"
20+
- "patch"
21+
package-ecosystem: "gomod"
1422
schedule:
23+
day: "saturday"
1524
interval: "weekly"
16-
- package-ecosystem: "npm" # See documentation for possible values
17-
directory: "/" # Location of package manifests
25+
time: "03:00"
26+
27+
timezone: "America/Chicago"
28+
- directory: "/"
29+
groups:
30+
node-minor-and-patch:
31+
update-types:
32+
- "minor"
33+
- "patch"
34+
package-ecosystem: "npm"
1835
schedule:
36+
day: "saturday"
1937
interval: "weekly"
20-
- package-ecosystem: "github-actions"
21-
directory: "/"
38+
time: "03:00"
39+
timezone: "America/Chicago"
40+
41+
- directory: "/"
42+
package-ecosystem: "github-actions"
2243
schedule:
44+
day: "saturday"
2345
interval: "weekly"
46+
time: "03:00"
47+
timezone: "America/Chicago"
48+
version: 2

.github/release.yml

Lines changed: 29 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,33 @@
11
changelog:
2+
categories:
3+
- labels:
4+
- "type: breaking"
5+
- "type: deprecation"
6+
- "regression"
7+
- "type: revert"
8+
title: ":warning: Update considerations and deprecations"
9+
- labels:
10+
- "type: feat"
11+
title: ":rocket: New features and improvements"
12+
- labels:
13+
- "type: fix"
14+
title: ":lady_beetle: Bug fixes"
15+
- labels:
16+
- "type: style"
17+
title: ":nail_care: Style"
18+
- labels:
19+
- "type: docs"
20+
title: ":book: Documentation"
21+
- labels:
22+
- "dependencies"
23+
- "type: test"
24+
- "type: ci"
25+
- "type: build"
26+
- "type: chore"
27+
title: ":hammer: Build/Test Dependency Upgrades"
28+
- labels:
29+
- "type: refactor"
30+
title: ":question: What's Changed"
231
exclude:
332
labels:
433
- ignore-changelog
5-
6-
categories:
7-
- title: ":question: What's Changed"
8-
labels:
9-
- "*"
10-
exclude:
11-
labels:
12-
- dependencies
13-
14-
- title: ":tractor: Dependencies"
15-
labels:
16-
- dependencies

.github/workflows/labeler.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ permissions:
1111

1212
jobs:
1313
label-pr:
14-
uses: esacteksab/.github/.github/workflows/labeler.yml@21bd7f88fef63b0a428dcbed6db9b5020c689682
14+
uses: esacteksab/.github/.github/workflows/labeler.yml@a6d41b15fc96a28fe28b001938f6486aeb0f55d0

.github/workflows/pre-commit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ permissions:
2020

2121
jobs:
2222
precommit-reusable:
23-
uses: esacteksab/.github/.github/workflows/pre-commit.yml@8f758c1a23a49581f80570f2977de55597cd974c
23+
uses: esacteksab/.github/.github/workflows/pre-commit.yml@a6d41b15fc96a28fe28b001938f6486aeb0f55d0

.github/workflows/spelling.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ concurrency:
1616

1717
jobs:
1818
typos-reusable:
19-
uses: esacteksab/.github/.github/workflows/spelling.yml@8f758c1a23a49581f80570f2977de55597cd974c
19+
uses: esacteksab/.github/.github/workflows/spelling.yml@a6d41b15fc96a28fe28b001938f6486aeb0f55d0

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
# keep-sorted start
55

66
.sass-cache/
7-
.tool-versions
87
# Additional Ruby/bundler ignore for when you run: bundle install
98
/vendor
109
_site/

.go-version

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

.node-version

Lines changed: 0 additions & 1 deletion
This file was deleted.

.python-version

Lines changed: 0 additions & 1 deletion
This file was deleted.

.tool-versions

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
go 1.24
2+
node 22
3+
python 3.12

0 commit comments

Comments
 (0)