fix: yaml syntax for new contributors action (#10094)
parent
8812580f72
commit
358da42a9b
|
@ -1,7 +1,7 @@
|
||||||
name: "Welcome new contributors"
|
name: "Welcome new contributors"
|
||||||
|
|
||||||
on:
|
on:
|
||||||
issues:
|
issues:
|
||||||
types: opened
|
types: opened
|
||||||
pull_request:
|
pull_request:
|
||||||
types: opened
|
types: opened
|
||||||
|
@ -13,16 +13,16 @@ permissions:
|
||||||
jobs:
|
jobs:
|
||||||
welcome-message:
|
welcome-message:
|
||||||
name: Welcoming New Users
|
name: Welcoming New Users
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
timeout-minutes: 10
|
timeout-minutes: 10
|
||||||
needs: semantics
|
needs: semantics
|
||||||
if: github.event.action == 'opened'
|
if: github.event.action == 'opened'
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/first-interaction@v1
|
- uses: actions/first-interaction@v1
|
||||||
with:
|
with:
|
||||||
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
pr-message: |-
|
pr-message: |-
|
||||||
Thank you for making your first Pull Request and taking the time to improve Cal.com ! ❤️🎉
|
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)
|
Feel free to join the conversation at [discord](https://go.cal.com/discord)
|
||||||
issue-message: |
|
issue-message: |
|
||||||
Thank you for opening your first issue, one of our team members will review it as soon as it possible. ❤️🎉
|
Thank you for opening your first issue, one of our team members will review it as soon as it possible. ❤️🎉
|
||||||
|
|
Loading…
Reference in New Issue