diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 640b51701..ea652db20 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -390,27 +390,6 @@ jobs: # git push origin HEAD:master -######################################################################################### -## Update Contributors List in README.md on a release -######################################################################################### - contrib-readme-job: - if: github.event_name == 'release' && github.event.action == 'published' # Only run on release but not on prerelease - needs: [prepare-release] - runs-on: ubuntu-latest - permissions: - contents: write - pull-requests: write - steps: - - name: Contribute List - uses: akhilmhdh/contributors-readme-action@v2.3.10 - with: - image_size: 50 - use_username: true - columns_per_row: 8 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - ######################################################################################### ## Update the Web Installer on a release ######################################################################################### diff --git a/.github/workflows/manual-update-contributors-list.yaml b/.github/workflows/manual-update-contributors-list.yaml new file mode 100644 index 000000000..aeb5b3df9 --- /dev/null +++ b/.github/workflows/manual-update-contributors-list.yaml @@ -0,0 +1,21 @@ +# This updates the Contributors list in the README.md +# it only gets run on: +# - Manually triggered + +name: Manually update contributors list + +on: + workflow_dispatch: # Run on manual trigger + +jobs: + manually-update-contributors-list: + runs-on: ubuntu-latest + name: A job to automatically update the contributors list in the README.md + permissions: + contents: write + pull-requests: write + steps: + - name: Contribute List + uses: akhilmhdh/contributors-readme-action@v2.3.10 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/README.md b/README.md index 6a8397d74..9e591a0eb 100644 --- a/README.md +++ b/README.md @@ -153,4 +153,6 @@ There are some ideas and feature requests which are not currently being pursued --- ## Our Contributors ❤️ - + +