Skip to content

GitHub action that assigns a PR owner upon opening a pull request

License

Notifications You must be signed in to change notification settings

planningcenter/pull-assign-action

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

33 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Pull Assign Action

This is a GitHub action that assigns a PR owner upon opening a pull request.

Sample config, place in .github/workflows/assign.yml

name: Pull Assign

on:
  pull_request:
    types: [opened, reopened]

jobs:
  assign:
    runs-on: ubuntu-latest
    steps:
      - uses: planningcenter/pull-assign-action@v1.1
        env:
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Copyright & License

Copyright (c) Planning Center, licensed MIT. See LICENSE file in this repo.