Skip to content

Commit

Permalink
Fix description and update version
Browse files Browse the repository at this point in the history
  • Loading branch information
Nora Söderlund committed Sep 6, 2023
1 parent 7337f81 commit 6eaf4b8
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ This is a GitHub Action that allows you to fetch the summary and description of
Add the action to your pull request workflow, which searches for Jira story keys with the project key `ABC`:
```yml
- name: Get summary from Jira
uses: nora-soderlund/[email protected].2
uses: nora-soderlund/[email protected].3
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
JIRA_BASE_URL: ${{ secrets.JIRA_BASE_URL }}
Expand Down Expand Up @@ -47,7 +47,7 @@ jobs:
- id: story
name: Get summary from Jira
uses: nora-soderlund/[email protected].2
uses: nora-soderlund/[email protected].3
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
JIRA_BASE_URL: ${{ secrets.JIRA_BASE_URL }}
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/index.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jira-summary-action",
"version": "0.9.2",
"version": "0.9.3",
"description": "A GitHub Action that posts the summary of a linked Jira story in pull requests.",
"main": "dist/index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import * as adf2md from "adf-to-md";

const octokit = getOctokit(getInput("GITHUB_TOKEN"));

async function getDescription(description: any) {
function getDescription(description: any) {
try {
return adf2md.convert(description).result;
}
Expand Down

0 comments on commit 6eaf4b8

Please sign in to comment.