Skip to content

Commit

Permalink
Feature/idp 602 add jira workflow (#35)
Browse files Browse the repository at this point in the history
* Add jira workflow
  • Loading branch information
Zav authored Sep 25, 2023
1 parent 173983f commit f6b4211
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 1 deletion.
34 changes: 34 additions & 0 deletions .github/workflows/jira.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Jira

on:
pull_request:
branches: [main]
paths-ignore: ["*.md"]

jobs:
main:
runs-on: ubuntu-latest
steps:
- name: Check Jira Story
shell: pwsh
run: |
Install-Module JiraPS -Scope CurrentUser -Force
if ("$env:GITHUB_HEAD_REF" -like "*/renovate/*" -eq $True)
{
Write-Host "Skipping, renovate branch detected"
return
}
Set-JiraConfigServer -Server "${{ secrets.JIRA_URL }}"
if("$env:GITHUB_HEAD_REF" -match "IDP-[0-9]+" -eq $False)
{
throw "Branch name $env:GITHUB_HEAD_REF doesn't respect the required pattern."
}
$JiraIssueKey = $Matches[0]
$PWord = ConvertTo-SecureString -String "${{ secrets.JIRA_API_TOKEN }}" -AsPlainText -Force
$Credential = New-Object -TypeName System.Management.Automation.PSCredential -ArgumentList "${{ secrets.JIRA_USERNAME }}", $PWord
Write-Host "Retrieving Jira issue with number $JiraIssueKey"
Get-JiraIssue -Key $JiraIssueKey -Credential $Credential -ErrorAction Stop | out-null
Write-Host "Successfully retrieved Jira issue"
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ public sealed class ParameterUsageAnalyzer : DiagnosticAnalyzer
{
internal static readonly DiagnosticDescriptor UseGenericParameterRule = new DiagnosticDescriptor(
id: RuleIdentifiers.UseGenericParameter,
title: "Use generic method instead",
title: "Use DomainEvent attribute on ",
messageFormat: "Use generic method instead",
category: RuleCategories.Design,
defaultSeverity: DiagnosticSeverity.Warning,
Expand Down

0 comments on commit f6b4211

Please sign in to comment.