Ask anyone to volunteer for working on issues.
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
Required repo token, can be passed using {{ secrets.GITHUB_TOKEN }}
Optional Comment message asking for volunteers
default: I am willing to work on this issue
Optional Custom label name
default: volunteer
Optional Custom label color
default: F79A41 (orange)
Optional Custom label description
default: Someone volunteered to work on this
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"
MIT