From 358da42a9b175c298fe1c297d6a3f858cf4f4cf5 Mon Sep 17 00:00:00 2001 From: Keith Williams Date: Wed, 12 Jul 2023 21:17:40 +0200 Subject: [PATCH] fix: yaml syntax for new contributors action (#10094) --- .../workflows/welcome-new-contributors.yml | 30 +++++++++---------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/.github/workflows/welcome-new-contributors.yml b/.github/workflows/welcome-new-contributors.yml index c0929abac4..18e888cbb9 100644 --- a/.github/workflows/welcome-new-contributors.yml +++ b/.github/workflows/welcome-new-contributors.yml @@ -1,7 +1,7 @@ name: "Welcome new contributors" -on: - issues: +on: + issues: types: opened pull_request: types: opened @@ -13,16 +13,16 @@ permissions: 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. ❤️🎉 + 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. ❤️🎉