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

feat: add workflow for auto author assign #262

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all 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
14 changes: 14 additions & 0 deletions .github/workflows/auto-author-assign.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Auto Author Assign

on:
pull_request_target:
types: [opened, reopened]

permissions:
pull-requests: write

jobs:
assign-author:
runs-on: ubuntu-latest
steps:
- uses: toshimaru/[email protected]
30 changes: 30 additions & 0 deletions .github/workflows/auto-comment.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Auto Comment
on:
issues:
pull_request_target:
types: [closed, opened]
jobs:
run:
runs-on: ubuntu-latest
steps:
- uses: wow-actions/auto-comment@v1
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
issuesOpened: |
👋 @{{ author }}
Thank you for creating an issue. We will look into the matter and get back to you as soon as possible. Keep up the great work!

pullRequestOpened: |
👋 @{{ author }}
Your pull request is successfully submitted. Our dedicated team will review it diligently.

issuesClosed: |
👋 @{{ author }}. This issue is closed.

pullRequestMerged: |
Congratulations @${{ github.actor }}! 🎉 Your pull request is merged. We appreciate your efforts to improve our project and your contribution is valuable.

issuesAssigned: |
👋 @{{ author }}
I have assigned the issue to you. You can now start working on it. If you have any queries or require guidance, do not hesitate to ask.

16 changes: 0 additions & 16 deletions .github/workflows/greetings.yml

This file was deleted.