https://github.com/jazibjafri/issue-volunteer
Ask anyone to volunteer for working on issues. And display them as volunteers on issues. So everyone knows when a issue is being worked upon by public.
https://github.com/jazibjafri/issue-volunteer
actions github issue workflow
Last synced: 3 months ago
JSON representation
Ask anyone to volunteer for working on issues. And display them as volunteers on issues. So everyone knows when a issue is being worked upon by public.
- Host: GitHub
- URL: https://github.com/jazibjafri/issue-volunteer
- Owner: jazibjafri
- License: mit
- Created: 2020-03-22T12:33:53.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-07-12T05:01:28.000Z (almost 3 years ago)
- Last Synced: 2026-02-11T17:25:57.959Z (5 months ago)
- Topics: actions, github, issue, workflow
- Language: JavaScript
- Homepage:
- Size: 936 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Issue Volunteer
Ask anyone to volunteer for working on issues.
# Description
A bot comments on all new issues, asking the visitors if they would like to work on this issue.

When the visitor comments their interest, bot adds a `volunteer` label and displays the person working

## Inputs
### `repo-token`
**Required** repo token, can be passed using `{{ secrets.GITHUB_TOKEN }}`
### `volunteer-message`
**Optional** Comment message asking for volunteers
default: I am willing to work on this issue
### `label-name`
**Optional** Custom label name
default: volunteer
### `label-color`
**Optional** Custom label color
default: F79A41 (orange)
### `label-desc`
**Optional** Custom label description
default: Someone volunteered to work on this
## Example usage in workflow
```
on: [issues, issue_comment]
jobs:
volunteer:
runs-on: ubuntu-latest
name: A job to get volunteers
steps:
- uses: actions/checkout@master
- name: issuevolunteer
id: issuevolunteer
uses: JazibJafri/issue-volunteer@v1
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"
volunteer-message: "I will work"
label-name: "volunteered"
label-color: "001FFF"
label-desc: "Someone is working"
```
## LICENSE
MIT