@cryptotaxi247 / kubo / commits / bc20d08b0

github: migrate actions

Steven Allen committed Sep 26, 2019 at 14:16 UTC bc20d08b0fa6a25f2580435a40dc921fdc6022fd
2 files changed +12 -8
.github/main.workflow deleted
-8
@@ -1,8 +0,0 @@
1 -action "Auto Assign" {
2 - uses = "ipfs/auto-assign@v1.0.0"
3 - secrets = ["GITHUB_TOKEN"]
4 -}
5 -workflow "Add reviewers/assignees to Pull Requests" {
6 - on = "pull_request"
7 - resolves = "Auto Assign"
8 -}
.github/workflows/pull_request.yml new
+12
@@ -0,0 +1,12 @@
1 +on: pull_request
2 +name: Add reviewers/assignees to Pull Requests
3 +jobs:
4 + autoAssign:
5 + name: Auto Assign
6 + runs-on: ubuntu-latest
7 + steps:
8 + - uses: actions/checkout@master
9 + - name: Auto Assign
10 + uses: ipfs/auto-assign@v1.0.0
11 + env:
12 + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}