-
Notifications
You must be signed in to change notification settings - Fork 8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: welcome-new-contributors action #10425
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
@O4epegb is attempting to deploy a commit to the cal Team on Vercel. A member of the Team first needs to authorize it. |
Thank you for following the naming conventions! 🙏 |
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. ❤️🎉 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Formatting change from prettier because this file had 1 space indentation instead of 2 spaces.
name: Welcoming New Users | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 10 | ||
needs: semantics |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This line was removed
📦 Next.js Bundle Analysis for @calcom/webThis analysis was generated by the Next.js Bundle Analysis action. 🤖 This PR introduced no changes to the JavaScript bundle! 🙌 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for fixing this.
What does this PR do?
Fixes https://github.com/calcom/cal.com/blob/main/.github/workflows/welcome-new-contributors.yml
It had
needs: semantics
line which is maybe some leftover from the past? Because of that this workflow just threw an error:Type of change
How should this be tested?
Tbh I don't know how to test it :D
Mandatory Tasks