1
0
mirror of https://github.com/taigrr/bitcask synced 2025-01-18 04:03:17 -08:00

Added autoassign workflow

This commit is contained in:
James Mills 2020-01-26 13:48:47 +10:00
parent c25655fcfa
commit ccf2517b8f
No known key found for this signature in database
GPG Key ID: AC4C014F1440EBD6

10
.github/workflows/autoassign.yml vendored Normal file
View File

@ -0,0 +1,10 @@
name: AutoAssigner
on: [pull_request]
jobs:
assignAuthor:
runs-on: ubuntu-latest
steps:
- uses: samspills/assign-pr-to-author@v1.0
if: github.event_name == 'pull_request' && github.event.action == 'opened'
with:
repo-token: '${{ secrets.GITHUB_TOKEN }}'