Unverified Commit 28754c93 authored by Eyar Zilberman's avatar Eyar Zilberman Committed by GitHub
Browse files

feat: add workflow for assigning issues to project (#282)

parent 0631a9bf
No related merge requests found
Showing with 20 additions and 0 deletions
+20 -0
name: Auto Assign to Project
on:
issues:
types: [labeled]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
jobs:
assign_one_project:
runs-on: ubuntu-latest
name: Assign to One Project
steps:
- name: Assign issues with `up for grabs` label to project `Datree`
uses: srggrs/assign-one-project-github-action@1.2.1
if: |
contains(github.event.issue.labels.*.name, 'up for grabs')
with:
project: 'https://github.com/datreeio/datree/projects/2'
column_name: 'To Do'
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment