Skip to content

Commit

Permalink
Merge pull request #56 from llaski/feature/pr-review-action
Browse files Browse the repository at this point in the history
PR Review action, dependabot config
  • Loading branch information
llaski authored Aug 16, 2023
2 parents 37f1b75 + 20bb596 commit 2865596
Show file tree
Hide file tree
Showing 3 changed files with 42 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for all configuration options:
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates

version: 2

updates:
- package-ecosystem: "composer" # See documentation for possible values
directory: "/" # Location of package manifests
schedule:
interval: "weekly"

- package-ecosystem: "npm" # See documentation for possible values
directory: "/" # Location of package manifests
schedule:
interval: "weekly"

- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "monthly"
19 changes: 19 additions & 0 deletions .github/workflows/pull-request-review.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Pull Request Review

on:
pull_request:

jobs:
dependency-review:
runs-on: ubuntu-latest

name: Dependency Review

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: "Dependency Review"
uses: actions/dependency-review-action@v3 # https://github.com/marketplace/actions/dependency-review
with:
fail-on-severity: moderate
1 change: 1 addition & 0 deletions CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* @llaski

0 comments on commit 2865596

Please sign in to comment.