Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/main' into update-node-to-20
Browse files Browse the repository at this point in the history
  • Loading branch information
LukasTy committed Mar 27, 2024
2 parents 2e0791c + 7bd20ca commit cd7ec3e
Show file tree
Hide file tree
Showing 10 changed files with 3,951 additions and 8,658 deletions.
19 changes: 16 additions & 3 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,22 @@
version: 2
updates:
# Enable version updates for npm
- package-ecosystem: 'npm'
# Look for `package.json` and `lock` files in the `root` directory
directory: '/'
# Check the npm registry for updates every day (weekdays)
schedule:
interval: 'daily'
labels:
- "dependencies"
groups:
npm:
patterns:
- "*"
- directory: /
package-ecosystem: "github-actions"
schedule:
interval: "daily"
labels:
- "dependencies"
groups:
github-actions:
patterns:
- "*"
1 change: 1 addition & 0 deletions .github/release-drafter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ categories:
labels:
- 'maintenance'
- 'documentation'
- 'dependencies'
change-template: '- $TITLE @$AUTHOR (#$NUMBER)'
template: |
## ❗️Changes
Expand Down
15 changes: 0 additions & 15 deletions .github/workflows/autolabel.yaml

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ jobs:
pull-requests: write
runs-on: ubuntu-latest
steps:
- uses: release-drafter/release-drafter@v5
- uses: release-drafter/release-drafter@v6
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4 changes: 2 additions & 2 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ jobs:
steps:
# Release with semantic tag like v1.0.3
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
ref: ${{ github.event.release.tag_name }}

- name: Setup Node
uses: actions/setup-node@v2
uses: actions/setup-node@v4

- name: Test and Build
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
build: # make sure build/ci work properly
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- run: |
npm install
- run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/verify-labels.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ jobs:
update_release_draft:
runs-on: ubuntu-latest
steps:
- uses: jesusvasquez333/verify-pr-label-action@2f0319c23a61915af52e8f905cf7c272be3b363d #v1.3.1
- uses: jesusvasquez333/verify-pr-label-action@657d111bbbe13e22bbd55870f1813c699bde1401 #v1.4.0
with:
github-token: '${{ secrets.GITHUB_TOKEN }}'
valid-labels: 'bug, enhancement, maintenance'
valid-labels: 'bug, enhancement, maintenance, dependencies'
pull-request-number: '${{ github.event.pull_request.number }}'
Loading

0 comments on commit cd7ec3e

Please sign in to comment.