Skip to content

Commit

Permalink
chore: update-package-lock workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
oelhanafey committed Jan 29, 2024
1 parent 2d70f15 commit b8ac1ca
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,17 @@ updates:
directory: "/"
schedule:
interval: monthly
versioning-strategy: increase
versioning-strategy: increase-if-necessary
commit-message:
prefix: fix
prefix-development: build
include: scope
ignore:
- dependency-name: "chai"
versions: [">=5.0"] # ESM only
# update-package-lock workflow already handles most minor/patch updates
# continue checking minor updates to cover dependendencies with version pattern 0.*.*
- dependency-name: "*"
update-types: ["version-update:semver-patch"]
reviewers:
- "Brightspace/lurvig"
12 changes: 12 additions & 0 deletions .github/workflows/update-package-lock.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: Update package-lock.json
on:
schedule:
- cron: '0 15 * * 1' # Mon 11:00AM EDT. 10:00AM EST.
- cron: '0 6 1 * *' # 1st of each month 2:00 AM EDT/1:00 AM EST
workflow_dispatch: # manual trigger
jobs:
Update:
uses: Brightspace/space-github-actions/.github/workflows/update-package-lock.yml@main
secrets: inherit
with:
DEFAULT_BRANCH: master
1 change: 1 addition & 0 deletions CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
* @Brightspace/lurvig
package-lock.json

0 comments on commit b8ac1ca

Please sign in to comment.