From 0869bca23c42fae58c6ec65dd2516d6b577c8996 Mon Sep 17 00:00:00 2001 From: James Mills Date: Sun, 29 Mar 2020 08:36:14 +1000 Subject: Add Github Workflows (#5) --- .github/workflows/autoassign.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/workflows/autoassign.yml (limited to '.github/workflows/autoassign.yml') diff --git a/.github/workflows/autoassign.yml b/.github/workflows/autoassign.yml new file mode 100644 index 0000000..d942069 --- /dev/null +++ b/.github/workflows/autoassign.yml @@ -0,0 +1,11 @@ +--- +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 }}' -- cgit v1.2.3