From 9285abcd5eb06bb426e41d51111dbcfe5e6de91e Mon Sep 17 00:00:00 2001 From: Jacob Herrington Date: Sun, 5 Jul 2020 17:14:10 -0500 Subject: [PATCH] Remove first interaction workflow (#9112) This workflow is currently not function as expected. I'm not sure why it would not be more clearly documented, but there doesn't seem to be a way that this would actually work to leave a comment on a first time contributor's PR (given that the contributor is using a fork)... Relevant discussions: https://github.com/actions/first-interaction/issues/10 https://github.community/t/github-actions-are-severely-limited-on-prs/18179#M9249 --- .github/workflows/welcome.yml | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 .github/workflows/welcome.yml diff --git a/.github/workflows/welcome.yml b/.github/workflows/welcome.yml deleted file mode 100644 index 39232ce38..000000000 --- a/.github/workflows/welcome.yml +++ /dev/null @@ -1,24 +0,0 @@ -# This workflow welcomes new contributors with a message! - -# https://github.com/marketplace/actions/first-interaction (https://github.com/actions/first-interaction) - -name: "Welcome New Contributor" -on: - pull_request: - types: [opened] - -jobs: - welcome: - runs-on: ubuntu-latest - steps: - - uses: actions/first-interaction@v1.0.0 - with: - repo-token: ${{ secrets.GITHUB_TOKEN }} - pr-message: |- - Congrats on making your first Pull Request to Forem! 🎉 - - Our core team will review your proposal as soon as possible. Our [code review process is publicly documented](https://docs.dev.to/maintainers/pull_requests/), so you'll know exactly what to expect. - - If you haven't had a chance, give our [Contributing Guide](https://docs.dev.to/contributing/forem/) a read. - - Thanks for taking the time to improve our platform and our community! ❤️