From ea7853789c92dddac72f3ce932489463f6804537 Mon Sep 17 00:00:00 2001 From: Danila Date: Wed, 2 Aug 2023 21:20:30 +0200 Subject: [PATCH] fix: welcome-new-contributors action (#10425) Co-authored-by: Keith Williams Co-authored-by: Peer Richelsen --- .../workflows/welcome-new-contributors.yml | 37 +++++++++---------- 1 file changed, 18 insertions(+), 19 deletions(-) diff --git a/.github/workflows/welcome-new-contributors.yml b/.github/workflows/welcome-new-contributors.yml index 18e888cbb9..2e238a9ba5 100644 --- a/.github/workflows/welcome-new-contributors.yml +++ b/.github/workflows/welcome-new-contributors.yml @@ -1,28 +1,27 @@ name: "Welcome new contributors" on: - issues: - types: opened - pull_request: - types: opened + issues: + types: opened + pull_request: + types: opened permissions: pull-requests: write issues: write jobs: - welcome-message: - name: Welcoming New Users - runs-on: ubuntu-latest - timeout-minutes: 10 - needs: semantics - if: github.event.action == 'opened' - steps: - - uses: actions/first-interaction@v1 - with: - repo-token: ${{ secrets.GITHUB_TOKEN }} - pr-message: |- - Thank you for making your first Pull Request and taking the time to improve Cal.com ! ❤️🎉 - Feel free to join the conversation at [discord](https://go.cal.com/discord) - issue-message: | - Thank you for opening your first issue, one of our team members will review it as soon as it possible. ❤️🎉 + welcome-message: + name: Welcoming New Users + runs-on: ubuntu-latest + timeout-minutes: 10 + if: github.event.action == 'opened' + steps: + - uses: actions/first-interaction@v1 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} + pr-message: |- + Thank you for making your first Pull Request and taking the time to improve Cal.com ! ❤️🎉 + Feel free to join the conversation at [discord](https://go.cal.com/discord) + issue-message: | + Thank you for opening your first issue, one of our team members will review it as soon as it possible. ❤️🎉