Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/minicli/action-contributors
GitHub Action to dynamically update CONTRIBUTORS file
https://github.com/minicli/action-contributors
actions contributors github github-action github-actions hacktoberfest
Last synced: 2 months ago
JSON representation
GitHub Action to dynamically update CONTRIBUTORS file
- Host: GitHub
- URL: https://github.com/minicli/action-contributors
- Owner: minicli
- License: mit
- Created: 2021-11-11T16:15:36.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-10-07T17:15:42.000Z (about 2 years ago)
- Last Synced: 2024-09-17T03:25:56.228Z (3 months ago)
- Topics: actions, contributors, github, github-action, github-actions, hacktoberfest
- Language: PHP
- Homepage:
- Size: 38.1 KB
- Stars: 83
- Watchers: 1
- Forks: 5
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
- stars - minicli/action-contributors - GitHub Action to dynamically update CONTRIBUTORS file \[*MIT License*\] (⭐️83) (PHP)
- stars - minicli/action-contributors - GitHub Action to dynamically update CONTRIBUTORS file \[*MIT License*\] (⭐️83) (PHP)
README
# Generate / Update CONTRIBUTORS File - GitHub Action
This GitHub Action updates a CONTRIBUTORS file with the top contributors from the specified project, pulling contents from the GitHub API. You can use it in combination with an action to push changes directly into your project's main branch, or with an action that creates a PR with the updated file.
### Supported Configuration via Environment Variables:
- CONTRIB_REPOSITORY: The repository you want to pull contributors from. This is mandatory.
- CONTRIB_OUTPUT_FILE: The file you want to generate, default set to `CONTRIBUTORS.md`.
- CONTRIB_STENCIL_DIR: Where to find Stencil templates. Default set to `.stencil`.
- CONTRIB_TEMPLATE: The [stencil](https://github.com/minicli/stencil) template to use - you can use this to customize the generated markdown file. Default set to the included `contributors.tpl` file.
- CONTRIB_IGNORE: A comma-separated string with users to ignore. Default set to `github-actions[bot],renovate-bot,dependabot`.## Basic Usage
This action is made to use in conjunction with [test-room-7/action-update-file](https://github.com/marketplace/actions/update-files-on-github) in order to automatically commit an updated CONTRIBUTORS file in a fixed interval.
The following example sets a workflow to update the file once a month, committing the changes directly to the main project's branch:
```yaml
name: Update CONTRIBUTORS file
on:
schedule:
- cron: "0 0 1 * *"
workflow_dispatch:
jobs:
main:
runs-on: ubuntu-latest
steps:
- uses: minicli/[email protected]
name: "Update a projects CONTRIBUTORS file"
env:
CONTRIB_REPOSITORY: 'minicli/minicli'
CONTRIB_OUTPUT_FILE: 'CONTRIBUTORS.md'
- name: Commit changes
uses: test-room-7/action-update-file@v1
with:
file-path: 'CONTRIBUTORS.md'
commit-msg: Update Contributors
github-token: ${{ secrets.GITHUB_TOKEN }}
```You need to replace the `CONTRIB_REPOSITORY` value with the GitHub project you want to pull contributors from.
If you'd prefer to create a pull request instead of committing the changes directly to the main branch,
you can use the [create-pull-request](https://github.com/marketplace/actions/create-pull-request) action instead. That will require also the [actions/checkout](https://github.com/actions/checkout) GitHub action.```yaml
name: Update CONTRIBUTORS file
on:
schedule:
- cron: "0 0 1 * *"
workflow_dispatch:
jobs:
main:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: minicli/[email protected]
name: "Update a projects CONTRIBUTORS file"
env:
CONTRIB_REPOSITORY: 'minicli/docs'
CONTRIB_OUTPUT_FILE: 'CONTRIBUTORS.md'
- name: Create a PR
uses: peter-evans/create-pull-request@v3
with:
commit-message: Update Contributors
title: "[automated] Update Contributors File"
token: ${{ secrets.GITHUB_TOKEN }}
```## Using a Custom Template
This action uses a simple templating lib that allows some customization for the final generated markdown file.
Here's how the default template looks like:
```markdown
# Top Contributors: {{ repo }}
Shout out to our top contributors!{{ content }}
_Last updated: {{ updated }}_
```The app will pass on the following variables to the template, which you can use as you prefer:
- `repo`: the repository from where the data is coming from. Ex: `minicli/minicli`
- `content`: the full list of contributors
- `updated`: date and time the file was generated in RFC822 formatTo use a custom template, create a `.tpl` file based on the default template.
Then, include the following environment variables on your workflow:- `CONTRIB_STENCIL_DIR`: a directory in your workflow repository where you'll have your template(s). Set this as `${{ github.workspace }}/YOUR_DIRECTORY`
- `CONTRIB_TEMPLATE`: the name of the file, without the `tpl` extension. Default: `contributors`This template file must be committed to the same repository where the workflow is defined.
Then, you'll also need to include the `actions/checkout` action to your workflow so that your repo files are available to the GitHub runner when it executes the action.
Here is an example of a workflow that uses a custom template called `mytemplate.tpl`, located in a `.stencil` directory in the repository where the workflow is set:
```yaml
name: Update CONTRIBUTORS file
on:
schedule:
- cron: "0 0 1 * *"
workflow_dispatch:
jobs:
main:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: minicli/[email protected]
name: "Update a projects CONTRIBUTORS file"
env:
CONTRIB_REPOSITORY: 'minicli/minicli'
CONTRIB_OUTPUT_FILE: 'CONTRIBUTORS.md'
CONTRIB_STENCIL_DIR: ${{ github.workspace }}/.stencil
CONTRIB_TEMPLATE: mytemplate
- name: Commit changes
uses: test-room-7/action-update-file@v1
with:
file-path: 'CONTRIBUTORS.md'
commit-msg: Update Contributors
github-token: ${{ secrets.GITHUB_TOKEN }}
```