Skip to content

Commit

Permalink
👷 add actions pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
louis70109 committed May 15, 2024
1 parent c95b9f9 commit 43e84cd
Show file tree
Hide file tree
Showing 4 changed files with 88 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/ISSUE_TEMPLATE/but_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
---
name: Bug Report
about: Create a bug report
labels: bug

---


## 發生了什麼事?
<!-- Delete this section before the submit -->


## 基本資訊

* Python version:
* OS:

## 期待行為
<!-- Tell us what should happen -->

## 目前狀況
<!-- Tell us what happens instead of the expected behavior -->


## 其他補充 Logs
<!-- Provide logs if possible -->
17 changes: 17 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---
name: Feature Request
about: Suggest an idea for this project
labels: enhancement

---

## Do this before creating an issue
<!-- Delete this section before the submit -->

- Check our existing issues, pull requests.

## Problem
<!-- Describe a clear and concise description of what the problem is. -->

## Solution
<!-- Describe a clear and concise description of what you want to happen. -->
15 changes: 15 additions & 0 deletions .github/workflows/assign.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# .github/workflows/auto-author-assign.yml
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/welcome.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Welcome
on:
pull_request:
types: [opened, closed]
issues:
types: [opened]
jobs:
welcome:
name: Welcome
runs-on: ubuntu-latest
steps:
- uses: wow-actions/welcome@v1
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
FIRST_ISSUE: |
👋 @{{ author }} Thanks for opening your first issue here!
Terda team will check and get back to you soon!
Please make sure that all information is filled required in the issue template.
FIRST_PR: |
👋 @{{ author }} Thanks for opening this pull request!
Please make sure that the resources are formatted correctly.
I will review your pull request as soon as possible.
FIRST_PR_MERGED: |
🎉 @{{ author }} Congrats on merging your first pull request!
Let's build the future together 🚀

0 comments on commit 43e84cd

Please sign in to comment.