]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/commitdiff
:construction_worker: Add GitHub action Issue Manager (#742)
authorSebastián Ramírez <tiangolo@gmail.com>
Wed, 27 Nov 2019 20:43:56 +0000 (21:43 +0100)
committerGitHub <noreply@github.com>
Wed, 27 Nov 2019 20:43:56 +0000 (21:43 +0100)
.github/workflows/main.yml [new file with mode: 0644]

diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
new file mode 100644 (file)
index 0000000..f95a473
--- /dev/null
@@ -0,0 +1,19 @@
+on:
+  schedule:
+  - cron: "* * * * *"
+
+jobs:
+  issue-manager:
+    runs-on: ubuntu-latest
+    steps:
+    - uses: tiangolo/issue-manager@master
+      with:
+        token: ${{ secrets.GITHUB_TOKEN }}
+        config: >
+            {
+              "answered": {
+                "users": ["tiangolo", "dmontagu"],
+                "delay": 864000,
+                "message": "Assuming the original issue was solved, it will be automatically closed now. But feel free to add more comments or create new issues."
+              }
+            }