Skip to content

Commit

Permalink
ci: welcome plan
Browse files Browse the repository at this point in the history
  • Loading branch information
hywax committed Feb 3, 2024
1 parent ae680fa commit bcb9850
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/welcome.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: Welcome

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

jobs:
run:
runs-on: ubuntu-latest
steps:
- name: Welcome
uses: wow-actions/welcome@v1
with:
GITHUB_TOKEN: ${{ secrets.BOT_GITHUB_TOKEN || secrets.GITHUB_TOKEN }}
FIRST_ISSUE: |
πŸ‘‹ @{{ author }}
Thanks for opening your first issue here!
To help make it easier for us to investigate your issue, please follow the [contributing guidelines](https://mafl.hywax.space/community/contributing.html).
FIRST_PR: |
πŸ‘‹ @{{ author }}
πŸ’– Thanks for opening this pull request!
Please follow the [contributing guidelines](https://mafl.hywax.space/community/contributing.html). And we use [semantic commit messages](https://www.conventionalcommits.org/en/v1.0.0/) to streamline the release process.
Examples of commit messages with semantic prefixes:
- `fix: interval for sending a request in the base service`
- `feat: add new NAME service`
- `docs: example of using the NAME service`
FIRST_PR_MERGED: |
πŸ‘‹ @{{ author }} Congrats on merging your first pull request! πŸŽ‰
STAR_MESSAGE: If you like this project, please ⭐ star our repo.

0 comments on commit bcb9850

Please sign in to comment.