mirror of
https://github.com/docker-mailserver/docker-mailserver.git
synced 2024-01-19 02:48:50 +00:00
f5a7e9d119
With the latest `contributors.yml` workflow, everyone is included in the list of contributors. Hence, we do not need the extra section anymore.
34 lines
895 B
YAML
34 lines
895 B
YAML
name: 'Update Contributors List'
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: 0 4 * * 0
|
|
|
|
permissions:
|
|
contents: write
|
|
pull-requests: write
|
|
statuses: write
|
|
|
|
jobs:
|
|
add-contributors:
|
|
name: 'Add Contributors'
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- name: 'Checkout'
|
|
uses: actions/checkout@v4
|
|
|
|
- name: 'Update CONTRIBUTORS.md'
|
|
uses: akhilmhdh/contributors-readme-action@v2.3.6
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
with:
|
|
readme_path: CONTRIBUTORS.md
|
|
collaborators: all
|
|
use_username: true
|
|
commit_message: 'docs: updated `CONTRIBUTORS.md`'
|
|
committer_username: github-actions[bot]
|
|
committer_email: 41898282+github-actions[bot]@users.noreply.github.com
|
|
pr_title_on_protected: 'docs: update `CONTRIBUTORS.md`'
|
|
auto_detect_branch_protection: true
|