From 29b8c66f4c0f8d9e9676f637d195b6b6fd6e4a36 Mon Sep 17 00:00:00 2001 From: McKnight-42 Date: Thu, 20 Jun 2024 10:06:50 -0500 Subject: [PATCH] update to match bigquery --- .github/workflows/docs-issues.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docs-issues.yml b/.github/workflows/docs-issues.yml index b441f3c19..f49cf517c 100644 --- a/.github/workflows/docs-issues.yml +++ b/.github/workflows/docs-issues.yml @@ -31,10 +31,11 @@ jobs: # decide if it should run or not. if: | (github.event.issue.state == 'closed' && github.event.issue.state_reason == 'completed') && ( - (github.event.action == 'closed' && contains(github.event.issue.labels.*.name, 'user docs'))) + (github.event.action == 'closed' && contains(github.event.issue.labels.*.name, 'user docs')) || + (github.event.action == 'labeled' && github.event.label.name == 'user docs')) uses: dbt-labs/actions/.github/workflows/open-issue-in-repo.yml@main with: issue_repository: "dbt-labs/docs.getdbt.com" issue_title: "Docs Changes Needed from ${{ github.event.repository.name }} Issue #${{ github.event.issue.number }}" - issue_body: "At a minimum, update bgody to include a link to the page on docs.getdbt.com requiring updates and what part(s) of the page you would like to see updated." + issue_body: "At a minimum, update body to include a link to the page on docs.getdbt.com requiring updates and what part(s) of the page you would like to see updated." secrets: inherit