Updating assignees made easy in your workflow using Github Assignee Updater ✅
-
Improves the developer productivity to auto update assignees 🧒
-
Configurable action and helps to automate the workflow 🔨
-
Effective CI/CD pipelines ✅
- Re-assign Issues to User(s)
filter-labels: ready-for-review
update-assignees: username
Before | After |
---|---|
- Clear Assignees from Issues
filter-labels: ready-for-review
clear-assignees: true
Before | After |
---|---|
Required
Owner of Organization or Repository
Required
Repository name
Required
Github access token
Filter issues which contains all labels eg. label1,label2
Default - fetches all issues
Remove all assignees from issues eg. true/false
Default - false
Update existing assignees with new assignees eg. username,username1
name: Update Issues Assignee
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: update assignees
id: updater
uses: garganshu/github-assignee-updater@v1.0.0
with:
owner: ${{secrets.OWNER}}
repo: ${{secrets.REPO}}
token: ${{secrets.TOKEN}}
filter-labels: ready-for-review
clear-assignees: false
update-assignees: username