Skip to content

Issue triage - cla-bot[bot] - #2113: fix(bigquery): merge labels instead of clobbering #2598

Issue triage - cla-bot[bot] - #2113: fix(bigquery): merge labels instead of clobbering

Issue triage - cla-bot[bot] - #2113: fix(bigquery): merge labels instead of clobbering #2598

Workflow file for this run

# **what?**
# Automatically swaps issue labels when an issue with 'triage:awaiting-response' receives a comment.
# **why?**
# Streamlines the triage process by automatically moving issues from awaiting response to product review.
# **when?**
# This workflow runs when a comment is added to an issue that has the 'triage:awaiting-response' label.
name: "Issue triage"
run-name: "Issue triage - ${{ github.actor }} - #${{ github.event.issue.number }}: ${{ github.event.issue.title }}"
on: issue_comment
defaults:
run:
shell: bash
permissions:
issues: write
jobs:
triage:
if: contains(github.event.issue.labels.*.name, 'triage:awaiting-response')
uses: dbt-labs/actions/.github/workflows/swap-labels.yml@main
with:
add_label: "triage:product"
remove_label: "triage:awaiting-response"
secrets: inherit