aboutsummaryrefslogtreecommitdiffhomepage
path: root/.github/workflows/take-action.yml
blob: c5b6f1f717e11f516f278d7600e7945989c18ff4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# .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 }}