16 lines
372 B
YAML
16 lines
372 B
YAML
name: Auto Assign
|
|
on:
|
|
pull_request:
|
|
types: [opened, reopened]
|
|
jobs:
|
|
automate:
|
|
runs-on: ubuntu-22.04
|
|
if: github.repository_owner == 'TryGhost'
|
|
env:
|
|
FORCE_COLOR: 1
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- run: gh extension install daniellockyer/gh-auto-assign
|
|
- run: gh auto-assign
|