From 4a0b4ebc340cb4533207de4c8596641df81d1fde Mon Sep 17 00:00:00 2001 From: Manuel <5673677+mtrezza@users.noreply.github.com> Date: Thu, 26 Aug 2021 19:19:20 +0200 Subject: [PATCH] ci(bot): add issue bot (#7523) --- .github/workflows/issue-bot.yml | 10 ++++++++++ CHANGELOG.md | 1 + 2 files changed, 11 insertions(+) create mode 100644 .github/workflows/issue-bot.yml diff --git a/.github/workflows/issue-bot.yml b/.github/workflows/issue-bot.yml new file mode 100644 index 00000000..18eb37ad --- /dev/null +++ b/.github/workflows/issue-bot.yml @@ -0,0 +1,10 @@ +name: Issue Bot +on: [issues] +jobs: + issue-bot: + runs-on: ubuntu-latest + steps: + - name: Inspect Issue + uses: parse-community/parse-issue-bot@main + with: + github-token: ${{ secrets.GITHUB_TOKEN }} diff --git a/CHANGELOG.md b/CHANGELOG.md index d96ee3d9..23446b1c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -108,6 +108,7 @@ ___ - Added Deprecation Policy to govern the introduction of breaking changes in a phased pattern that is more predictable for developers (Manuel Trezza) [#7199](https://github.com/parse-community/parse-server/pull/7199) - Add REST API endpoint `/loginAs` to create session of any user with master key; allows to impersonate another user. (GormanFletcher) [#7406](https://github.com/parse-community/parse-server/pull/7406) - Add official support for MongoDB 5.0 (Manuel Trezza) [#7469](https://github.com/parse-community/parse-server/pull/7469) +- Add issue bot (Manuel Trezza) [#7523](https://github.com/parse-community/parse-server/pull/7523) ### Other Changes - Support native mongodb syntax in aggregation pipelines (Raschid JF Rafeally) [#7339](https://github.com/parse-community/parse-server/pull/7339)