Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add David and Matt as reviewers, and add actions for issue/PR assignment #1942

Merged
merged 4 commits into from
Oct 14, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 0 additions & 10 deletions .github/auto_assign-issues.yml

This file was deleted.

19 changes: 19 additions & 0 deletions .github/auto_assign.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Set to true to add reviewers to pull requests
addReviewers: false

# Set to true to add assignees to pull requests
addAssignees: true

# A list of assignees, overrides reviewers if set
assignees:
- woop
- tsotnet
- achals
- adchia
- felixwang9817

# A number of assignees to add to the pull request
# Set to 0 to add all of the assignees.
# Uses numberOfReviewers if unset.
numberOfAssignees: 1

15 changes: 15 additions & 0 deletions .github/workflows/assign_issues.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Issue assignment

on:
issues:
types: [opened]

jobs:
auto-assign:
runs-on: ubuntu-latest
steps:
- name: 'Auto-assign issue'
uses: pozil/[email protected]
with:
assignees: achals, woop, tsotnet, felix, felixwang9817, adchia
numOfAssignee: 1
12 changes: 12 additions & 0 deletions .github/workflows/assign_reviewers.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: 'Assign Reviewers'
on:
pull_request_target:
types:
- opened
- ready_for_review

jobs:
add-reviews:
runs-on: ubuntu-latest
steps:
- uses: kentaro-m/[email protected]
7 changes: 5 additions & 2 deletions OWNERS
Original file line number Diff line number Diff line change
@@ -1,15 +1,18 @@
# This file is different from the CODEOWNERS file.
# OWNERS is used by feast-ci-bot to accept commands like `/ok-to-test` and `/lgtm`
# More info at https://www.kubernetes.dev/docs/guide/owners/
approvers:
- woop
- jklegar
- tsotnet
- achals
- adchia
- felixwang9817
reviewers:
- woop
- jklegar
- tsotnet
- achals
- tedhtchang
- adchia
- felixwang9817
- mavysavydav
- MattDelac