-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added more options, now using stencil templates
- Loading branch information
1 parent
3e1e114
commit 8705057
Showing
5 changed files
with
141 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,15 @@ | ||
# 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. | ||
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. | ||
|
||
## Example Usage | ||
### 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_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. | ||
|
||
|
@@ -18,7 +25,7 @@ jobs: | |
main: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: minicli/[email protected] | ||
- uses: minicli/action-contributors@v3.2.1 | ||
name: "Update a projects CONTRIBUTORS file" | ||
env: | ||
CONTRIB_REPOSITORY: 'minicli/minicli' | ||
|
@@ -49,7 +56,7 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: minicli/[email protected] | ||
- uses: minicli/action-contributors@v3.2.1 | ||
name: "Update a projects CONTRIBUTORS file" | ||
env: | ||
CONTRIB_REPOSITORY: 'minicli/docs' | ||
|
@@ -61,3 +68,52 @@ jobs: | |
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 format | ||
|
||
To use a custom template, create a `.tpl` file based on the default template and include the `CONTRIB_TEMPLATE` env var to your workflow. This file must be committed to the same repository where the workflow is defined. | ||
|
||
Here is an example of a workflow that uses a custom template called `mytemplate.tpl`, located at the root of 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: minicli/[email protected] | ||
name: "Update a projects CONTRIBUTORS file" | ||
env: | ||
CONTRIB_REPOSITORY: 'minicli/minicli' | ||
CONTRIB_OUTPUT_FILE: 'CONTRIBUTORS.md' | ||
CONTRIB_TEMPLATE: ${{ github.workspace }}/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 }} | ||
``` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
{ | ||
"require": { | ||
"php": "^8.1", | ||
"minicli/minicli": "^2.2", | ||
"minicli/curly": "^0.1.2" | ||
"minicli/curly": "^0.1.2", | ||
"minicli/stencil": "^0.1.1" | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# Top Contributors: {{ repo }} | ||
Shout out to our top contributors! | ||
|
||
{{ content }} | ||
|
||
_Last updated: {{ updated }}_ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters