Skip to content

Commit

Permalink
Reverting temporary changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Piedone committed Feb 12, 2024
1 parent 0084105 commit 46a24dd
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ switch ($GitHub.event_name)
}
}
}
'pull_request'
'pull_request_target'
{
$summary = "Review `"$($GitHub.event.pull_request.title)`"$titleSuffix"
$description = $PullRequestJiraIssueDescription
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,11 @@ runs:
run: |
$output = "False"
if ("${{ github.event.pull_request }}" -ne "")
{
$output = (Confirm-PullRequestTitle "$Env:PR_TITLE") -or $Env:GITHUB_HEAD_REF -Like "*issue*"
}
Set-GitHubOutput "is-issue-pr" $output
- name: Create Jira Issue
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ on:
types: [opened]
pull_request_target:
types: [opened]
pull_request:

jobs:
create-jira-issues-for-community-activities:
Expand All @@ -17,9 +16,9 @@ jobs:
JIRA_BASE_URL: ${{ secrets.DEFAULT_JIRA_BASE_URL }}
JIRA_USER_EMAIL: ${{ secrets.DEFAULT_JIRA_USER_EMAIL }}
JIRA_API_TOKEN: ${{ secrets.DEFAULT_JIRA_API_TOKEN }}
JIRA_PROJECT_KEY: ADHOC
JIRA_PROJECT_KEY: ${{ secrets.DEFAULT_JIRA_PROJECT_KEY }}
DISCUSSION_JIRA_ISSUE_DESCRIPTION: ${{ secrets.DEFAULT_DISCUSSION_JIRA_ISSUE_DESCRIPTION }}
ISSUE_JIRA_ISSUE_DESCRIPTION: ${{ secrets.DEFAULT_ISSUE_JIRA_ISSUE_DESCRIPTION }}
PULL_REQUEST_JIRA_ISSUE_DESCRIPTION: ${{ secrets.DEFAULT_PULL_REQUEST_JIRA_ISSUE_DESCRIPTION }}
with:
issue-component: Test
issue-component: Lombiq.GitHub.Actions

0 comments on commit 46a24dd

Please sign in to comment.