mirror of
https://github.com/bartvdbraak/omnidash.git
synced 2025-04-28 16:01:21 +00:00
Merge pull request #33 from bartvdbraak/refactor/dependabot-reviewers
Add default reviewer to Dependabot
This commit is contained in:
commit
46640217e7
2 changed files with 17 additions and 1 deletions
4
.github/dependabot.yml
vendored
4
.github/dependabot.yml
vendored
|
@ -4,7 +4,11 @@ updates:
|
||||||
directory: "/"
|
directory: "/"
|
||||||
schedule:
|
schedule:
|
||||||
interval: "daily"
|
interval: "daily"
|
||||||
|
reviewers:
|
||||||
|
- "bartvdbraak"
|
||||||
- package-ecosystem: "github-actions"
|
- package-ecosystem: "github-actions"
|
||||||
directory: "/"
|
directory: "/"
|
||||||
schedule:
|
schedule:
|
||||||
interval: "weekly"
|
interval: "weekly"
|
||||||
|
reviewers:
|
||||||
|
- "bartvdbraak"
|
||||||
|
|
14
.github/workflows/lighthouse-report.yaml
vendored
14
.github/workflows/lighthouse-report.yaml
vendored
|
@ -27,7 +27,9 @@ jobs:
|
||||||
with:
|
with:
|
||||||
header: unlighthouse
|
header: unlighthouse
|
||||||
message: |
|
message: |
|
||||||
Running Lighthouse audit...
|
⚡️ Lighthouse report
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
- name: Check out
|
- name: Check out
|
||||||
uses: actions/checkout@v3.5.3
|
uses: actions/checkout@v3.5.3
|
||||||
|
@ -129,3 +131,13 @@ jobs:
|
||||||
header: unlighthouse
|
header: unlighthouse
|
||||||
message: |
|
message: |
|
||||||
${{ steps.format_lighthouse_score.outputs.comment }}
|
${{ steps.format_lighthouse_score.outputs.comment }}
|
||||||
|
|
||||||
|
- name: Sticky Comment on Pull Request with failure
|
||||||
|
uses: marocchino/sticky-pull-request-comment@v2.6.2
|
||||||
|
if: ${{ failure() }}
|
||||||
|
with:
|
||||||
|
header: unlighthouse
|
||||||
|
message: |
|
||||||
|
⚡️ Lighthouse report failed
|
||||||
|
|
||||||
|
See deployment for any errors
|
||||||
|
|
Loading…
Reference in a new issue