Skip to content

Commit

Permalink
Merge pull request #629 from opokornyy/add-user-monitoring
Browse files Browse the repository at this point in the history
feat: Add github action that will add reviewer
  • Loading branch information
kubevirt-bot authored Jul 24, 2023
2 parents bcf50ce + 4e5fc61 commit 3701059
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/add-reviewer-monitoring.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Add reviewer from sig-monitoring to PR

on:
pull_request:
types: [opened, synchronize]
paths:
- internal/operands/metrics/*
- internal/common/resource.go
- docs/metrics.md
- tests/metrics_test_utils.go
- tools/metricsdocs/*

jobs:
add_reviewer:
runs-on: ubuntu-latest

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

- name: Add Reviewer
id: add_reviewer
run: gh pr edit ${{ github.event.pull_request.number }} --add-reviewer sradco
env:
GITHUB_TOKEN: ${{ github.token }}

0 comments on commit 3701059

Please sign in to comment.