This project is a fastlane plugin. To get started with fastlane-plugin-jira_release_notes, add it to your project by running:
fastlane add_plugin jira_release_notesRelease notes from JIRA for version
Check out the example Fastfile to see how to use this plugin. Try it by cloning the repo, running fastlane install_plugins and bundle exec fastlane test.
lane :notes do
text = jira_release_notes(
username: "me",
password: "123", # password or api token
url: "https://jira.example.com",
project: "OX",
version: "0.1",
status: "Testable",
format: "plain"
)
puts text
endfastlane action jira_release_notes
How to generate an API Access Token
| Key | Description | Env Var | Default |
|---|---|---|---|
| url | URL for Jira instance | FL_JIRA_SITE | |
| username | Username for Jira instance | FL_JIRA_USERNAME | |
| password | Password for Jira or api token | FL_JIRA_PASSWORD | |
| project | Jira project name | FL_JIRA_PROJECT | |
| version | Jira project version | FL_JIRA_PROJECT_VERSION | |
| status | Jira issue status | FL_JIRA_STATUS | |
| components | An array of Jira issue components | FL_JIRA_COMPONENTS | |
| format | Format text. Plain, html or none | FL_JIRA_RELEASE_NOTES_FORMAT | plain |
| max_results | Maximum number of issues | FL_JIRA_RELEASE_NOTES_MAX_RESULTS | 50 |
To run both the tests, and code style validation, run
rake
To automatically fix many of the styling issues, use
rubocop -a
For any other issues and feedback about this plugin, please submit it to this repository.
If you have trouble using plugins, check out the Plugins Troubleshooting guide.
For more information about how the fastlane plugin system works, check out the Plugins documentation.
fastlane is the easiest way to automate beta deployments and releases for your iOS and Android apps. To learn more, check out fastlane.tools.