Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/michaelsp/jira-estimates
update estimates in jira tickets
https://github.com/michaelsp/jira-estimates
estimates github github-actions jira story-points
Last synced: about 1 month ago
JSON representation
update estimates in jira tickets
- Host: GitHub
- URL: https://github.com/michaelsp/jira-estimates
- Owner: MichaelSp
- License: mit
- Created: 2022-04-28T09:58:21.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-10-28T08:49:46.000Z (2 months ago)
- Last Synced: 2024-10-31T10:49:18.844Z (2 months ago)
- Topics: estimates, github, github-actions, jira, story-points
- Language: TypeScript
- Homepage:
- Size: 8.6 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: CODEOWNERS
Awesome Lists containing this project
README
# Sync GitHub estimation labels with Jira
This action will hook into the issues and export the first value of the label that has exactly one number to jira as `Story Points`.
It will either use the `string` input or the content of the issue to search for an [auto-link](https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/configuring-autolinks-to-reference-external-resources) or the regex pattern `/([a-zA-Z0-9]+-[0-9]+)/`.
## Usage
```yaml
name: Jira Estimate Sync
on:
issues:
types:
- opened
- edited
- deleted
- labeled
- unlabeledpull_request:
types:
- labeled
- unlabeled
- opened
- editedjobs:
sync-estimates:
runs-on: ubuntu-lateststeps:
- uses: MichaelSp/jira-estimates@v1
with:
jira-url: https://jira.at.your.company
jira-username: ${{ secrets.JIRA_USERNAME }}
jira-password: ${{ secrets.JIRA_PASSWORD }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
```