Skip to content
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

Welcome first-time contributors (Lombiq Technologies: OCORE-154) #15708

Merged
merged 10 commits into from
Apr 23, 2024
Merged
Show file tree
Hide file tree
Changes from 8 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions .github/workflows/first_time_contributor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: First-time Contributor Welcome

on:
issues:
types: [opened]
pull_request_target:
types: [opened, closed]

jobs:
first-time-contributor-welcome:
runs-on: ubuntu-latest
steps:
# We don't use the actions/first-interaction action because it can't reference the author, nor can it comment after
# PR merge.
# Once https://github.com/wow-actions/welcome/pull/12 is merged, we should use https://github.com/wow-actions/welcome
# directly.
- uses: OrchardCMS/welcome-action@task/update-to-node-20
with:
FIRST_ISSUE_COMMENT: >
Thank you for submitting your first issue, awesome! 🚀 If you haven't filled out the template fully already,
please be sure to do so. This helps us better understand your feature request/bug report. A core team member
will be with you shortly to review your issue.
MikeAlhayek marked this conversation as resolved.
Show resolved Hide resolved
FIRST_PR_COMMENT: >
Thank you for submitting your first pull request, awesome! 🚀 If you haven't read it already, please be sure
to check out our [contribution guide](https://docs.orchardcore.net/en/latest/docs/guides/contributing/). A
core team member will be with you shortly to review your PR.
MikeAlhayek marked this conversation as resolved.
Show resolved Hide resolved
FIRST_PR_MERGED_COMMENT: >
Congratulations on your first PR merge! 🎉 Thank you for your contribution! We're looking forward to welcome
other contributions of yours in the future. @all-contributors please add @{{ author }} for code.
STAR_MESSAGE: If you like Orchard Core, please star our repo!
MikeAlhayek marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ permissions:
pull-requests: read

jobs:
build:
publish-issue-metrics:
name: Generate Issue and Pull Request Metrics
runs-on: ubuntu-latest
steps:
Expand Down
Loading