Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 1 addition & 38 deletions .github/renovate.json
Original file line number Diff line number Diff line change
@@ -1,41 +1,4 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
":disableDependencyDashboard",
":disablePeerDependencies",
":semanticPrefixFixDepsChoreOthers",
":ignoreModulesAndTests",
"workarounds:all",
"helpers:pinGitHubActionDigestsToSemver",
"docker:disable"
],
"rangeStrategy": "bump",
"ignorePaths": ["**/node_modules/**"],
"commitMessageSuffix": "[skip netlify]",
"assignees": [],
"reviewers": [],
"minimumReleaseAge": "7 days",
"packageRules": [
{
"groupName": "github-actions",
"matchManagers": ["github-actions"]
},
{
"groupName": "npm-packages",
"matchManagers": ["npm"],
"matchDepTypes": ["dependencies", "devDependencies"],
"separateMajorMinor": true
},
{
"description": "Disable package manager version updates",
"matchPackageNames": ["pnpm"],
"matchDepTypes": ["packageManager"],
"enabled": false
},
{
"matchUpdateTypes": ["patch", "minor"],
"automerge": true,
"minimumReleaseAge": "21 days"
}
]
"extends": ["github>trueberryless/renovate-config"]
}
4 changes: 2 additions & 2 deletions .github/workflows/format.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ jobs:
autofix:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6.1.0
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false

- name: Setup PNPM
uses: pnpm/action-setup@0ebf47130e4866e96fce0953f49152a61190b271 # v6.0.9

- name: Setup Node
uses: actions/setup-node@249970729cb0ef3589644e2896645e5dc5ba9c38 # v6.5.0
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
with:
node-version: ${{ env.NODE_VERSION }}
cache: "pnpm"
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/labeler.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
client-id: ${{ secrets.BOT_APP_ID }}
private-key: ${{ secrets.BOT_PRIVATE_KEY }}

- uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6.1.0
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
token: ${{ steps.generate_token.outputs.token }}
persist-credentials: false
Expand All @@ -34,7 +34,6 @@ jobs:
gh label delete "invalid" --yes || true
gh label delete "question" --yes || true
gh label delete "wontfix" --yes || true
gh label delete "🚀 manifest" --yes || true

gh label create "🚨 action" --description "Changes in GitHub workflows or actions" --color "A75AD5" --force
gh label create "🤖 bot" --description "Automatically generated pull request" --color "0075CA" --force
Expand All @@ -53,7 +52,7 @@ jobs:
gh label create "🏯 styles" --description "Stylesheets or design updates" --color "550F5A" --force
gh label create "🔒 wontfix" --description "This will not be worked on" --color "FFFFFF" --force

- uses: actions/labeler@b8dd2d9be0f68b860e7dae5dae7d772984eacd6d # v6.2.0
- uses: actions/labeler@bf12e9b00b37c5c0ca2b87b79b2daf7891dbda13 # v7.0.0
with:
configuration-path: .github/labeler.yaml
sync-labels: true
2 changes: 1 addition & 1 deletion .github/workflows/welcome-bot.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
client-id: ${{ secrets.BOT_APP_ID }}
private-key: ${{ secrets.BOT_PRIVATE_KEY }}

- uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6.1.0
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
token: ${{ steps.generate_token.outputs.token }}
persist-credentials: false
Expand Down
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ web_modules/
.cache
.parcel-cache

# Astro
# Astro
.astro

# Next.js build output
Expand Down Expand Up @@ -133,3 +133,6 @@ dist
.yarn/build-state.yml
.yarn/install-state.gz
.pnp.*

# Netlify
.netlify
Loading