@beauraines/node-helpers 4.0.19 → 4.0.20

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,8 @@
1
+ # Set to true to add reviewers to pull requests
2
+ addReviewers: true
3
+
4
+ # Set to true to add assignees to pull requests
5
+ addAssignees: false
6
+
7
+ reviewers:
8
+ - beauraines
@@ -0,0 +1,14 @@
1
+ name: Auto-assign reviewers for Dependabot PRs
2
+
3
+ on:
4
+ pull_request_target:
5
+ types: [opened, reopened]
6
+
7
+ jobs:
8
+ assign-reviewers:
9
+ if: github.actor == 'dependabot[bot]' || github.actor == 'dependabot-preview[bot]'
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - name: Assign reviewers
13
+ uses: kentaro-m/auto-assign-action@v2.0.0
14
+
package/CHANGELOG.md CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ### [4.0.20](https://github.com/beauraines/node-helpers/compare/v4.0.19...v4.0.20) (2024-06-22)
6
+
5
7
  ### [4.0.19](https://github.com/beauraines/node-helpers/compare/v4.0.18...v4.0.19) (2024-06-21)
6
8
 
7
9
  ### [4.0.18](https://github.com/beauraines/node-helpers/compare/v4.0.17...v4.0.18) (2024-06-21)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@beauraines/node-helpers",
3
- "version": "4.0.19",
3
+ "version": "4.0.20",
4
4
  "description": "Collection of node helpers",
5
5
  "main": "index.js",
6
6
  "scripts": {