From 5e0086ed8529396beed8ac26a9b4e40728017a46 Mon Sep 17 00:00:00 2001 From: Mike Hardy Date: Wed, 22 Jul 2020 13:36:21 -0500 Subject: [PATCH] Switch to Probot Welcomebot vs non-functional first-interaction action https://github.com/actions/first-interaction/issues/10 https://github.com/ankidroid/Anki-Android/pull/6716#issuecomment-662424952 --- .github/config.yml | 20 ++++++++++++++++++++ .github/workflows/greetings.yml | 13 ------------- 2 files changed, 20 insertions(+), 13 deletions(-) create mode 100644 .github/config.yml delete mode 100644 .github/workflows/greetings.yml diff --git a/.github/config.yml b/.github/config.yml new file mode 100644 index 000000000000..22c2f778b71b --- /dev/null +++ b/.github/config.yml @@ -0,0 +1,20 @@ +# Configuration for welcome - https://github.com/behaviorbot/welcome + +# Configuration for new-issue-welcome - https://github.com/behaviorbot/new-issue-welcome + +# Comment to be posted to on first time issues +newIssueWelcomeComment: > + Hello! 👋 Thanks for logging this issue. Please remember we are all volunteers here, so some patience may be required before we can get to the issue. Also remember that the fastest way to get resolution on an issue is to propose a change directly, https://github.com/ankidroid/Anki-Android/wiki/Contributing + +# Configuration for new-pr-welcome - https://github.com/behaviorbot/new-pr-welcome + +# Comment to be posted to on PRs from first time contributors in your repository +newPRWelcomeComment: > + First PR! 🚀 We sincerely appreciate that you have taken the time to propose a change to AnkiDroid! Please have patience with us as we are all volunteers - we will get to this as soon as possible. + +# Configuration for first-pr-merge - https://github.com/behaviorbot/first-pr-merge + +# Comment to be posted to on pull requests merged by a first time user +firstPRMergeComment: > + +# It is recommended to include as many gifs and emojis as possible! diff --git a/.github/workflows/greetings.yml b/.github/workflows/greetings.yml deleted file mode 100644 index f3179b8209dd..000000000000 --- a/.github/workflows/greetings.yml +++ /dev/null @@ -1,13 +0,0 @@ -name: Greetings - -on: [pull_request, issues] - -jobs: - greeting: - runs-on: ubuntu-latest - steps: - - uses: actions/first-interaction@v1 - with: - repo-token: ${{ secrets.GITHUB_TOKEN }} - issue-message: 'Hello! 👋 Thanks for logging this issue. Please remember we are all volunteers here, so some patience may be required before we can get to the issue. Also remember that the fastest way to get resolution on an issue is to propose a change directly, https://github.com/ankidroid/Anki-Android/wiki/Contributing' - pr-message: 'First PR! 🚀 We sincerely appreciate that you have taken the time to propose a change to AnkiDroid! Please have patience with us as we are all volunteers - we will get to this as soon as possible.'