Skip to content

This is an action to assign yourself to an issue for a repo you are not a contributor to.

License

Notifications You must be signed in to change notification settings

AnupamAS0x1/take-action

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace
 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

62 Commits
 
 
 
 
 
 

Repository files navigation

Take Action

This is an action to assign yourself to an issue for a repo you are not a contributor to.

Usage

This GitHub Action lets a prospective contributor assign themselves to an issue, and optionally leaves a comment on the issue.

  • message
    The message to display to the user once they have assigned themselves to an issue.
  • trigger
    The string that take action will search for in the comment body to activate the action.

Setup

This GitHub Action requires a GITHUB_TOKEN and can be optionally configured with a message to the prospective contributor.

# .github/workflows/take.yml 
name: Assign issue to contributor
on: 
  issue_comment:

jobs:
  assign:
    name: Take an issue
    runs-on: ubuntu-latest
    steps:
    - name: take the issue
      uses: bdougie/take-action@main
      env:
        GITHUB_TOKEN: ${{ github.token }}
      with:
        message: Thanks for taking this issue! Let us know if you have any questions!
        trigger: .take

About

This is an action to assign yourself to an issue for a repo you are not a contributor to.

Resources

License

Stars

Watchers

Forks

Packages

No packages published