https://github.com/josuigoa/action_jira-time-report
https://github.com/josuigoa/action_jira-time-report
Last synced: 26 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/josuigoa/action_jira-time-report
- Owner: josuigoa
- Created: 2022-07-18T16:26:56.000Z (almost 3 years ago)
- Default Branch: develop
- Last Pushed: 2023-12-19T07:18:40.000Z (over 1 year ago)
- Last Synced: 2025-02-02T01:45:26.345Z (3 months ago)
- Language: JavaScript
- Size: 8.79 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Action for [ideckia](https://ideckia.github.io/): jira-time-report
## Description
Open the Time Sheet Report from Jira between startDate and endDate selected from a dialog
## Properties
| Name | Type | Description | Shared | Default | Possible values |
| ----- |----- | ----- | ----- | ----- | ----- |
| browser | String | The browser to use to open the url | false | null | null |
| url_pattern | String | Time sheet report url pattern (::startDate:: and ::endDate:: will be replaced with selected dates) | false | null | null |## Test the action
There is a script called `test_action.js` to test the new action. Set the `props` variable in the script with the properties you want and run this command:
```
node test_action.js
```## Example in layout file
```json
{
"text": "jiratimereport example",
"bgColor": "00ff00",
"actions": [{
"name": "jira-time-report",
"props": {
"browser": "firefox",
"url_pattern": "local.jira/xxxxxxx&startDate=::startDate::&endDate=::endDate::&xxxxx"
}
}
]
}
```