fordeer/Send Deployment URL to Jira
Automatically posts deployment URL to associated Jira issue based on PR title
View on GitHubTrust Signals
- Scorecard Score
- not yet scored
- Maintenance Recency
- Stale
- License
- None
Inputs
| name | description | required | default |
|---|---|---|---|
| jira_base_url | JIRA base URL (e.g., https://your-domain.atlassian.net) | yes | — |
| jira_username | JIRA username/email | yes | — |
| jira_api_token | JIRA API token | yes | — |
| deployment_url | Deployment URL to send to Jira | yes | — |
| pr_title | Pull Request title (defaults to GitHub PR title) | no | ${{ github.event.pull_request.title }} |
| jira_project_prefix | Jira project prefix (e.g., FC, DEV, PROJ) | no | FC |
| jira_key_pattern | Custom regex pattern to extract Jira key (overrides jira_project_prefix if provided) | no | "" |
| message_template | Custom message template for Jira comment | no | 🚀 [Deployment URL]({deployment_url}) is ready for testing! 🔗 |
Outputs
| name | description |
|---|---|
| jira_issue_key | Extracted Jira issue key |
| comment_posted | Whether comment was successfully posted |