From 6eb5065c045c1752e661b8bf93a17bde92525c20 Mon Sep 17 00:00:00 2001 From: Kentaro Matsushita Date: Sat, 23 Feb 2019 12:47:13 +0900 Subject: [PATCH] Add a description that how to run the app using GitHub Actions --- README.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/README.md b/README.md index 52c3013..3e16ef8 100644 --- a/README.md +++ b/README.md @@ -95,6 +95,21 @@ WEBHOOK_SECRET=development PRIVATE_KEY_PATH=.data/private-key.pem ``` +### GitHub Actions +Add `.github/main.workflow` to the repository you want to run the app. + +```hcl +workflow "Add reviewers/assignees to Pull Requests" { + on = "pull_request" + resolves = "Auto Assign" +} + +action "Auto Assign" { + uses = "kentaro-m/auto-assign@master" + secrets = ["GITHUB_TOKEN"] +} +``` + ## Contributing If you have suggestions for how `auto-assign` could be improved, or want to report a bug, open an issue! We'd love all and any contributions.