-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(.github): add update_contributors.yml to update contributors us…
…ing github actions
- Loading branch information
1 parent
4f5d31f
commit 777e130
Showing
2 changed files
with
61 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |