This repository has been archived by the owner on May 6, 2024. It is now read-only.
Multiple plugin in single dbt project #93
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# **what?** | ||
# Mirrors issues into Jira. Includes the information: title, | ||
# GitHub Issue ID and URL | ||
# **why?** | ||
# Jira is our tool for tracking and we need to see these issues in there | ||
# **when?** | ||
# On issue creation or when an issue is labeled `Jira` | ||
name: Jira Issue Creation | ||
on: | ||
issues: | ||
types: [opened, labeled] | ||
permissions: | ||
issues: write | ||
jobs: | ||
jira-issue-creation: | ||
uses: dbt-labs/actions/.github/workflows/jira-creation-actions.yml@v1 | ||
Check failure on line 22 in .github/workflows/jira-creation.yml GitHub Actions / .github/workflows/jira-creation.ymlInvalid workflow file
|
||
secrets: | ||
JIRA_BASE_URL: ${{ secrets.JIRA_BASE_URL }} | ||
JIRA_USER_EMAIL: ${{ secrets.JIRA_USER_EMAIL }} | ||
JIRA_API_TOKEN: ${{ secrets.JIRA_API_TOKEN }} |