Skip to content

ci(issues): testing issue labeling automation pipeline #1

ci(issues): testing issue labeling automation pipeline

ci(issues): testing issue labeling automation pipeline #1

Workflow file for this run

name: Issues
on:
issues:
types:
- opened
- reopened
- closed
jobs:
label_issues:
runs-on: ubuntu-latest
steps:
- name: Assign Label
uses: actions-ecosystem/action-add-labels@v1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
labels: |
${{ github.event.action == 'opened' || github.event.action == 'reopened' && 'state:Backlog' }}
${{ github.event.action == 'closed' && 'state:Done' }}