rpc v0.3.3 cannot process the "list" command #53
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: | |
call-label-action: | |
uses: dbt-labs/actions/.github/workflows/jira-creation-actions.yml@main | |
secrets: | |
JIRA_BASE_URL: ${{ secrets.JIRA_BASE_URL }} | |
JIRA_USER_EMAIL: ${{ secrets.JIRA_USER_EMAIL }} | |
JIRA_API_TOKEN: ${{ secrets.JIRA_API_TOKEN }} |