@@ -10,12 +10,17 @@ jobs:
1010
1111 steps :
1212 - uses : actions/checkout@v3
13+ - name : Initialize Git user
14+ run : |
15+ git config --global user.email "code@sekretservices.com"
16+ git config --global user.name "Release Workflow 🤖"
17+ - name : Log git status
18+ run : git status
1319 - name : conventional Changelog Action
1420 id : changelog
1521 uses : TriPSs/conventional-changelog-action@v3.18.0
1622 with :
1723 github-token : ${{ secrets.github_token }}
18-
1924 - name : create release
2025 uses : actions/create-release@v1
2126 if : ${{ steps.changelog.outputs.skipped == 'false' }}
@@ -25,11 +30,15 @@ jobs:
2530 tag_name : ${{ steps.changelog.outputs.tag }}
2631 release_name : ${{ steps.changelog.outputs.tag }}
2732 body : ${{ steps.changelog.outputs.clean_changelog }}
28-
29- - name : Contribute List
30- uses : akhilmhdh/contributors-readme-action@v2.3.6
31- env :
32- GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
33+ - name : Generate Contributors Images
34+ uses : jaywcjlove/github-action-contributors@main
35+ id : contributors
36+ with :
37+ filter-author : (renovate\[bot\]|renovate-bot|dependabot\[bot\])
38+ avatarSize : 32
39+ - name : Modify README.md
40+ uses : jaywcjlove/github-action-modify-file-content@main
3341 with :
34- commit_message : " docs(contributor): contrib updated"
42+ path : README.md
43+ body : ' ${{steps.contributors.outputs.htmlList}}'
3544
0 commit comments