From: Sebastián Ramírez Date: Wed, 27 Nov 2019 20:43:56 +0000 (+0100) Subject: :construction_worker: Add GitHub action Issue Manager (#742) X-Git-Tag: 0.44.0~3 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6d0caf75228af97634bd49e5d81a9db9335aaa94;p=thirdparty%2Ffastapi%2Ffastapi.git :construction_worker: Add GitHub action Issue Manager (#742) --- diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000000..f95a47329c --- /dev/null +++ b/.github/workflows/main.yml @@ -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." + } + }