Skip to content

Commit

Permalink
Fix quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
MultiQC Bot committed Oct 3, 2023
1 parent 536332b commit df7dc0d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,10 @@ jobs:
run: |
if [[ "${{ github.event_name }}" == "issue_comment" ]]; then
export PR_NUMBER=${{ github.event.issue.number }}
export PR_TITLE=${{ github.event.issue.title }}
export PR_TITLE="${{ github.event.issue.title }}"
elif [[ "${{ github.event_name }}" == "pull_request_target" ]]; then
export PR_NUMBER=${{ github.event.pull_request.number }}
export PR_TITLE=${{ github.event.pull_request.title }}
export PR_TITLE="${{ github.event.pull_request.title }}"
fi
python ${GITHUB_WORKSPACE}/.github/workflows/changelog.py
Expand Down

0 comments on commit df7dc0d

Please sign in to comment.