Skip to content
Merged
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
11 changes: 10 additions & 1 deletion .github/workflows/automated-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,14 @@ on:
description: "Jira project key"
required: true
type: string
ktlo-jira-project-key:
description: "Jira project key where the KTLO epic lives. Defaults to jira-project-key if not provided."
required: false
type: string
ktlo-epic-name-pattern:
description: "Regex pattern to match the KTLO epic summary. Defaults to 'KTLO'."
required: false
type: string
project-name:
description: "Project name"
required: true
Expand Down Expand Up @@ -692,7 +700,8 @@ jobs:
id: resolve-ktlo-epic
uses: SonarSource/release-github-actions/resolve-ktlo-epic@v1
with:
jira-project: ${{ inputs.jira-project-key }}
jira-project: ${{ inputs.ktlo-jira-project-key || inputs.jira-project-key }}
epic-name-pattern: ${{ inputs.ktlo-epic-name-pattern || 'KTLO' }}
use-jira-sandbox: ${{ inputs.use-jira-sandbox }}

- name: Create SQC Ticket
Expand Down
2 changes: 2 additions & 0 deletions docs/AUTOMATED_RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,8 @@ This workflow composes several actions from this repository:
| `sq-cli-short-description` | Short summary of SQ CLI related changes | No | - |
| `sqs-integration` | Create SQS integration ticket and PR | No | `true` |
| `sqc-integration` | Create SQC integration ticket and PR | No | `true` |
| `ktlo-jira-project-key` | Jira project key where the KTLO epic lives. Defaults to `jira-project-key` if not provided. | No | - |
| `ktlo-epic-name-pattern` | Regex pattern to match the KTLO epic summary | No | `KTLO` |
| `runner-environment` | Runner labels/environment | No | `sonar-m` |
| `release-process` | Release process documentation URL | No | General page |
| `verbose` | When `true`, posts per-job summaries and a final run summary | No | `false` |
Expand Down
Loading