Wingysam / Christmas-Community

Christmas lists for families
GNU Affero General Public License v3.0
245 stars 41 forks source link

Automated the maintanace of the list of contributers. #122

Closed jskiddie closed 9 months ago

jskiddie commented 9 months ago

utilizes https://github.com/akhilmhdh/contributors-readme-action and should only need to be activated by the owner once.

Wingysam commented 9 months ago

Huh, thank you!

jskiddie commented 9 months ago

just noticed we should use sueername not full name to get rid of "Null" People. so to add

              with:
                  use_username: true

making:

on:
    push:
        branches:
            - master

jobs:
    contrib-readme-job:
        runs-on: ubuntu-latest
        name: A job to automate contrib in readme
        steps:
            - name: Contribute List
              uses: akhilmhdh/contributors-readme-action@v2.3.6
              with:
                  use_username: true
              env:
                  GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Wingysam commented 9 months ago

Thanks, I've made the change.