{"id":44475622,"url":"https://github.com/senzing-factory/github-action-jira-issue-creation","last_synced_at":"2026-02-12T22:16:47.942Z","repository":{"id":57513993,"uuid":"233134230","full_name":"senzing-factory/github-action-jira-issue-creation","owner":"senzing-factory","description":null,"archived":false,"fork":false,"pushed_at":"2026-02-02T13:55:50.000Z","size":221,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2026-02-03T02:55:18.480Z","etag":null,"topics":["git-actions","senzing-factory"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/senzing-factory.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2020-01-10T21:35:51.000Z","updated_at":"2026-02-02T13:55:52.000Z","dependencies_parsed_at":"2024-01-23T17:41:31.197Z","dependency_job_id":"110394c1-6df4-4ae0-b44b-f4f3ad5c861b","html_url":"https://github.com/senzing-factory/github-action-jira-issue-creation","commit_stats":null,"previous_names":["senzing/git-action-jira-issue-creation","senzing-factory/github-action-jira-issue-creation","senzing-factory/git-action-jira-issue-creation"],"tags_count":3,"template":false,"template_full_name":"actions/container-action","purl":"pkg:github/senzing-factory/github-action-jira-issue-creation","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/senzing-factory%2Fgithub-action-jira-issue-creation","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/senzing-factory%2Fgithub-action-jira-issue-creation/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/senzing-factory%2Fgithub-action-jira-issue-creation/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/senzing-factory%2Fgithub-action-jira-issue-creation/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/senzing-factory","download_url":"https://codeload.github.com/senzing-factory/github-action-jira-issue-creation/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/senzing-factory%2Fgithub-action-jira-issue-creation/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29383230,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-12T22:07:52.078Z","status":"ssl_error","status_checked_at":"2026-02-12T22:07:49.026Z","response_time":55,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["git-actions","senzing-factory"],"created_at":"2026-02-12T22:16:47.061Z","updated_at":"2026-02-12T22:16:47.933Z","avatar_url":"https://github.com/senzing-factory.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# GitHub Action Jira Issue Creation\n\nGitHub Action to create an Issue in Jira. This action can be used to create an issue when a build fails in a GitHub Action workflow.\n\n## Usage\n\nThis action can be used after any other action. Below is simple example on using it:\n\n1\\. Create a `.github/workflows/github-action-jira-issue-creation.yml`\n\n2\\. Add the following properties to `github-action-jira-issue-creation.yml` file\n\n```yaml\non: push\nname: Jira Issue Creation Demo\njobs:\n  jiraIssueCreation:\n    name: Jira Issue Creation Demo\n    runs-on: ubuntu-latest\n    steps:\n      - uses: actions/checkout@v4\n      - name: Jira Creation Demo\n        uses: senzing-factory/github-action-jira-issue-creation@master\n        env:\n          JIRA_ACCOUNT_URL: https://someaccount.atlassian.net/\n          JIRA_API_TOKEN: jiraApiToken\n          JIRA_ISSUE_ATTACHMENT: log_file.log\n          JIRA_ISSUE_DESCRIPTION: Demo'ing Jira Issue Creation\n          JIRA_ISSUE_SUMMARY: Demo'ing Jira Issue Creation\n          JIRA_ISSUE_TYPE: Demo'ing Jira Issue Creation\n          JIRA_PROJECT: jira-issue-creation\n          JIRA_USERNAME: user@email.com\n```\n\nGo [here](deployment/github-actions/template_github_action_jira_issue_creation.yml) for a template yml with all environment variables.\n\n## Environment Variables\n\nThese are the environment variables that can be set to pass in additional information about the Git Action.\n\n| Variable Name          | Required | Description                                  |\n| ---------------------- | :------: | -------------------------------------------- |\n| JIRA_ACCOUNT_URL       |   Yes    | Base URL to the Jira account.                |\n| JIRA_API_TOKEN         |   Yes    | Jira API Token used instead of a password.   |\n| JIRA_ISSUE_ATTACHMENT  |    No    | File to attach to the Jira Issue.            |\n| JIRA_ISSUE_DESCRIPTION |   Yes    | Body of the Jira Issue.                      |\n| JIRA_ISSUE_TYPE        |   Yes    | Type of issue to be created (Bug or Task).   |\n| JIRA_ISSUE_SUMMARY     |   Yes    | Title of the Jira Issue.                     |\n| JIRA_PROJECT           |   Yes    | Jira project the ticket will be filed under. |\n| JIRA_USERNAME          |   Yes    | Jira user email.                             |\n\n## JIRA_ISSUE_ATTACHMENT Usage\n\nGit Actions mounts the runner's working directory to /github/workspace as a default and it is controlled by Git Hub's system. Make sure the file being attached is stored in the runner's workspace (it will be in the directory the repository was clone into on the runner). Otherwise, this Git Action will not be able to see the file it needs to attach to the Jira Issue.\n\n## Reference\n\n- [Creating an API toke for a user.](https://confluence.atlassian.com/cloud/api-tokens-938839638.html)\n- [Jira Go Lang Library](https://github.com/andygrunwald/go-jira)\n\n## License\n\n[Apache 2](LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsenzing-factory%2Fgithub-action-jira-issue-creation","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsenzing-factory%2Fgithub-action-jira-issue-creation","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsenzing-factory%2Fgithub-action-jira-issue-creation/lists"}