Skip to content

Commit

Permalink
Add codeowner PR workflow (#6747)
Browse files Browse the repository at this point in the history
This commit adds a new organization workflow utilizing a shared github-script
action that will add comments to PRs on the following events:

1. A review request (`pull_request.review_requested`) from a given
CODEOWNERS github team (`release-engineering-reviewers`).
2. A user adds the "ready for RE review" label (`pull_request.labeled`)
to a pull request.
  • Loading branch information
jstvz authored Dec 6, 2021
1 parent 914ec5f commit 8ff19b8
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/codeowners.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
name: Call SFDO Codeowners Review Workflows

on:
pull_request:
types:
- labeled
- review_requested

jobs:
shared-codeowners:
uses: SalesforceFoundation/.github/.github/workflows/codeowners.yml@main

0 comments on commit 8ff19b8

Please sign in to comment.