mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-06 22:40:14 -05:00
14 lines
326 B
YAML
14 lines
326 B
YAML
name: Auto Assign
|
|
on:
|
|
pull_request:
|
|
types: [opened, reopened]
|
|
jobs:
|
|
automate:
|
|
runs-on: ubuntu-18.04
|
|
env:
|
|
FORCE_COLOR: 1
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- run: gh extension install daniellockyer/gh-auto-assign
|
|
- run: gh auto-assign
|