Skip to content

Commit

Permalink
chore(.github): add update_contributors.yml to update contributors us…
Browse files Browse the repository at this point in the history
…ing github actions
  • Loading branch information
boyongjiong committed Jun 17, 2024
1 parent 4f5d31f commit 777e130
Show file tree
Hide file tree
Showing 2 changed files with 61 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
<!--- Provide a general summary of your changes in the Title above --->

### Description

<!--- Describe your changes in detail --->

### Motivation and Context

<!--- Why is this change required? What problem does it solve? --->
<!--- If it fixes an open issue, please link to the issue here. --->
<!--- GIF or snapshot should be provided if includes UI/interactive modification. --->
<!--- How to fix the problem, and list final API implementation and usage sample if that is an new feature. --->

### Types of changes

<!--- What types of changes does your code introduce? Put an `x` in all the boxes that apply: --->

- [ ] Bug fix (non-breaking change which fixes an issue)
- [ ] New feature (non-breaking change which adds functionality)
- [ ] Breaking change (fix or feature that would cause existing functionality to change)
- [ ] Enhancement (changes that improvement of current feature or performance)
- [ ] Refactoring (changes that neither fixes a bug nor adds a feature)
- [ ] Test Case (changes that add missing tests or correct existing tests)
- [ ] Code style optimization (changes that do not affect the meaning of the code)
- [ ] Docs (changes that add or update documentation)
- [ ] Chore (changes that do not modify src or test files)

### Self Check before Merge

<!--- Go over all the following points, and put an `x` in all the boxes that apply. --->
<!--- If you're ensure about any of these, don't hesitate to ask. We're here to help! --->
- [ ] My code follows the code style of this project
- [ ] My change requires a change to the documentation
- [ ] I have updated the documentation accordingly
- [ ] I have read the [**CONTRIBUTING**](https://github.com/didi/LogicFlow/blob/next/CONTRUBUTING.en-US.md) document
- [ ] I have added tests to cover my changes.
- [ ] All new and existing tests passed.
24 changes: 24 additions & 0 deletions .github/workflows/update_contributors.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: 🤝 Update Contributeors
on:
schedule:
- cron: '0 1 * * *'
push:
branches:
- master
- next
- next-major
- alpha
- beta
jobs:
contributors:
runs-on: ubuntu-latest
steps:
- uses: wow-actions/use-app-token@v2
with:
app_id: ${{ secrets.APP_ID }}
private_key: ${{ secrets.PRIVATE_KEY }}

- uses: wow-actions/contributors-list@v1
with:
GITHUB_TOKEN: ${{ env.BOT_TOKEN }}
excludeUsers: semantic-release-bot ImgBotApp

0 comments on commit 777e130

Please sign in to comment.