-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
101 additions
and
78 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
name: validate renovate.json5 | ||
|
||
on: | ||
pull_request: | ||
|
||
env: | ||
LOG_LEVEL: debug | ||
|
||
jobs: | ||
renovate-config-validator: | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 10 | ||
|
||
steps: | ||
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | ||
|
||
- uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4 | ||
with: | ||
node-version: 20 | ||
|
||
- run: npx -p renovate renovate-config-validator renovate.json5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
linters: | ||
enable: | ||
- gofmt | ||
|
||
issues: | ||
exclude-dirs: | ||
- ../../go |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
version: 2 | ||
before: | ||
hooks: | ||
- go mod tidy | ||
|
@@ -36,11 +37,10 @@ changelog: | |
- '^test:' | ||
brews: | ||
- name: papercut | ||
homepage: "https://github.com/lehigh-university-libraries/homebrew-papercut" | ||
tap: | ||
owner: lehigh-university-libraries | ||
name: homebrew-papercut | ||
homepage: "https://github.com/lehigh-university-libraries/papercut" | ||
commit_author: | ||
name: joecorall | ||
email: [email protected] | ||
|
||
repository: | ||
owner: lehigh-university-libraries | ||
name: homebrew |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
module github.com/lehigh-university-libraries/papercut | ||
|
||
go 1.20 | ||
go 1.23.4 | ||
|
||
require github.com/spf13/cobra v1.7.0 | ||
|
||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
{ | ||
extends: [ | ||
'config:best-practices', | ||
':rebaseStalePrs', | ||
], | ||
packageRules: [ | ||
{ | ||
matchUpdateTypes: [ | ||
'minor', | ||
'patch', | ||
'digest', | ||
], | ||
groupName: 'bump-dependencies', | ||
schedule: [ | ||
'after 10pm on Friday', | ||
], | ||
matchPackageNames: [ | ||
'*', | ||
], | ||
}, | ||
{ | ||
matchUpdateTypes: [ | ||
'major', | ||
], | ||
groupName: 'all major updates', | ||
schedule: [ | ||
'after 10pm on the first day of the month', | ||
], | ||
matchPackageNames: [ | ||
'*', | ||
], | ||
}, | ||
], | ||
labels: [ | ||
'dependencies', | ||
], | ||
osvVulnerabilityAlerts: true, | ||
dependencyDashboardOSVVulnerabilitySummary: 'unresolved', | ||
vulnerabilityAlerts: { | ||
enabled: true, | ||
}, | ||
} |