Updating labels made easy in your workflow using Github Label Updater ✅
-
Improves the developer productivity to auto update labels 🏷️
-
Configurable action and helps to automate the workflow 🔨
-
Effective CI/CD pipelines ✅
- Add Label(s) to Filtered Issues
filter-labels: ready-for-review
remove-all-labels: false
remove-labels: ready-for-review
add-labels: fixed,enhancement
Before | After |
---|---|
- Remove All Label(s) of Filtered Issues
filter-labels: ready-for-review
remove-all-labels: 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 labels from the issues eg. true/false
Default - false
Remove labels from the issues eg. label1,label2
Add labels to the issues eg. label1,label2
name: Update Issues Label
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: update label
id: updater
uses: garganshu/[email protected]
with:
owner: ${{secrets.OWNER}}
repo: ${{secrets.REPO}}
token: ${{secrets.TOKEN}}
filter-labels: wip,bug,invalid
remove-all-labels: false
remove-labels: wip,invalid
add-labels: fixed,enhancement