mirror of
https://github.com/Lissy93/dashy.git
synced 2024-11-27 00:28:09 +03:00
👷 Combined GH action to credit contributors
This commit is contained in:
parent
f3281eace7
commit
a32bbeb96c
17
.github/workflows/generate-contributors.yml
vendored
17
.github/workflows/generate-contributors.yml
vendored
@ -1,17 +0,0 @@
|
|||||||
# Generates an image showing profile picture of everyone who'se contributed to Dashy
|
|
||||||
# Which is embeded in the Readme Credits section, as they deserve some recognition
|
|
||||||
name: Contributors
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 1 * * 0' # At 01:00 on Sunday.
|
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- master
|
|
||||||
jobs:
|
|
||||||
contributors:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- uses: bubkoo/contributors-list@v1
|
|
||||||
with:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
svgPath: docs/assets/CONTRIBUTORS.svg
|
|
40
.github/workflows/generate-credits.yml
vendored
Normal file
40
.github/workflows/generate-credits.yml
vendored
Normal file
@ -0,0 +1,40 @@
|
|||||||
|
# Inserts list of contributors and community members into ./docs/credits.md
|
||||||
|
# Also generates an SVG showing all contributors, which is embedded into readme
|
||||||
|
name: Contributors
|
||||||
|
on:
|
||||||
|
workflow_dispatch: # Manual dispatch
|
||||||
|
schedule:
|
||||||
|
- cron: '0 1 * * 0' # At 01:00 on Sunday.
|
||||||
|
jobs:
|
||||||
|
# Job #1 - Update the Credits page
|
||||||
|
insert-credits:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
name: Inserts contributors into credits.md
|
||||||
|
steps:
|
||||||
|
- name: Contribute List
|
||||||
|
uses: akhilmhdh/contributors-readme-action@v2.2
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.BOT_GITHUB_TOKEN }}
|
||||||
|
with:
|
||||||
|
image_size: 80
|
||||||
|
readme_path: docs/credits.md
|
||||||
|
columns_per_row: 6
|
||||||
|
commit_message: ':yellow_heart: Updates contributors list'
|
||||||
|
committer_username: liss-bot
|
||||||
|
committer_email: liss-bot@d0h.co
|
||||||
|
# Job #2 - Generate an embedded SVG asset, showing all contributors
|
||||||
|
generate-contributors:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: bubkoo/contributors-list@v1
|
||||||
|
with:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
svgPath: docs/assets/CONTRIBUTORS.svg
|
||||||
|
affiliation: all
|
||||||
|
includeBots: false
|
||||||
|
excludeUsers: BeginCI snyk-bot
|
||||||
|
avatarSize: 96
|
||||||
|
userNameHeight: 20
|
||||||
|
svgWidth: 830
|
||||||
|
commitMessage: ':blue_heart: Updates contributor SVG'
|
||||||
|
|
20
.github/workflows/insert-credits.yml
vendored
20
.github/workflows/insert-credits.yml
vendored
@ -1,20 +0,0 @@
|
|||||||
# Generates and inserts a dynamic table of contributors,
|
|
||||||
# sponsors, bots and helpful community members into ./docs/credits.md
|
|
||||||
name: Insert Credits
|
|
||||||
on: [push, pull_request]
|
|
||||||
jobs:
|
|
||||||
contrib-readme-job:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
name: Inserts contributors into credits.md
|
|
||||||
steps:
|
|
||||||
- name: Contribute List
|
|
||||||
uses: akhilmhdh/contributors-readme-action@v2.2
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.BOT_GITHUB_TOKEN }}
|
|
||||||
with:
|
|
||||||
image_size: 80
|
|
||||||
readme_path: docs/credits.md
|
|
||||||
columns_per_row: 6
|
|
||||||
commit_message: ':yellow_heart: Updates contributors list'
|
|
||||||
committer_username: liss-bot
|
|
||||||
committer_email: liss-bot@d0h.co
|
|
@ -14,7 +14,6 @@
|
|||||||
</table>
|
</table>
|
||||||
<!-- readme: sponsors -end -->
|
<!-- readme: sponsors -end -->
|
||||||
|
|
||||||
<!-- sponsors --><!-- sponsors -->
|
|
||||||
## Contributors
|
## Contributors
|
||||||
<!-- readme: contributors -start -->
|
<!-- readme: contributors -start -->
|
||||||
<table>
|
<table>
|
||||||
@ -100,7 +99,7 @@
|
|||||||
<!-- readme: EVOTk,shadowking001,turnrye,Robert-Ernst,MilesTEG1,Niklashere -end -->
|
<!-- readme: EVOTk,shadowking001,turnrye,Robert-Ernst,MilesTEG1,Niklashere -end -->
|
||||||
|
|
||||||
## Bots
|
## Bots
|
||||||
<!-- readme: liss-bot,bots -start -->
|
<!-- readme: liss-bot,snyk-bot,bots -start -->
|
||||||
<table>
|
<table>
|
||||||
<tr>
|
<tr>
|
||||||
<td align="center">
|
<td align="center">
|
||||||
@ -118,7 +117,7 @@
|
|||||||
</a>
|
</a>
|
||||||
</td></tr>
|
</td></tr>
|
||||||
</table>
|
</table>
|
||||||
<!-- readme: liss-bot,bots -end -->
|
<!-- readme: liss-bot,snyk-bot,bots -end -->
|
||||||
|
|
||||||
## Dependencies 🔗
|
## Dependencies 🔗
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user