Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create issue-bot workflow #87

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions .github/workflows/docs-issues.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# **what?**
# - open issues in docs.getdbt.com for new changes
#
# **why?**
# - ensure updates are reflected in user docs
#
# **when?**
# - issues are closed with the `user docs` label
name: Docs issues

on:
issues:
types: [closed, labeled]

permissions:
issues: write

jobs:
open-docs-issue:
name: Open docs issue
# We only want to run this when the PR has been merged or the label in the labeled event is `user docs`.
# Otherwise, it runs the risk of duplication of issues being created due to merge and label both
# triggering this workflow to run and neither having generating the comment before the other runs.
# This lives here instead of the shared workflow because this is where we decide if it should run or not.
if: |
github.event.issue.closed == true && (
(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 }} PR #${{ github.event.pull_request.number }}"
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
25 changes: 25 additions & 0 deletions .github/workflows/issue_triage.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# **what?**
# - respond to user comments by updating issues from `awaiting_response` to `triage`
#
# **why?**
# - automate issue triage
#
# **when?**
# - users comment on issues
name: Issue triage

on:
issue_comment:

permissions:
issues: write

jobs:
triage:
name: Update triage label
if: contains(github.event.issue.labels.*.name, 'awaiting_response')
uses: dbt-labs/actions/.github/workflows/swap-labels.yml@main
with:
add_label: triage
remove_label: awaiting_response
secrets: inherit
31 changes: 0 additions & 31 deletions .github/workflows/triage-labels.yml

This file was deleted.

Loading