Skip to content

Commit

Permalink
Merge pull request #3 from mikepenz/feature/disable_ticket_migration
Browse files Browse the repository at this point in the history
Add configuration to disable ticket migration
  • Loading branch information
mikepenz authored Sep 7, 2022
2 parents 287ed21 + 1ce5ac7 commit 8538b06
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ runs:
- id: jira-release-ticket-creator
shell: bash
run: |
java -jar ${{ github.action_path }}/scripts/jira_magic-2.2.3.jar "${{ inputs.releaseVersion }}" "${{ inputs.jiraToken }}" "${CHANGELOG}" "${{ inputs.projectDirectory }}" "${{ inputs.configurationDirectory }}" "${{ inputs.cachesDirectory }}" "${{ inputs.demoMode }}"
java -jar ${{ github.action_path }}/scripts/jira_magic-2.2.4.jar "${{ inputs.releaseVersion }}" "${{ inputs.jiraToken }}" "${CHANGELOG}" "${{ inputs.projectDirectory }}" "${{ inputs.configurationDirectory }}" "${{ inputs.cachesDirectory }}" "${{ inputs.demoMode }}"
echo "::set-output name=release-ticket-id::$(cat ${{ inputs.cachesDirectory }}/release.txt)"
echo "::set-output name=release-version-meta::$(cat ${{ inputs.cachesDirectory }}/releaseMetaData.json)"
env:
Expand Down
3 changes: 2 additions & 1 deletion jira_magiic_config.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,6 @@
"versionBase": "android_",
"prBaseUrl": "https://github.com/org/repo/pull/",
"pluginDirectory": "plugins/",
"projectDirectory": "/some/absolute/path/to/project/"
"projectDirectory": "/some/absolute/path/to/project/",
"migrateTickets": true
}
Binary file not shown.

0 comments on commit 8538b06

Please sign in to comment.