Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 507 Bytes

README.md

File metadata and controls

25 lines (18 loc) · 507 Bytes

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/[email protected]
        env:
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Copyright & License

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