{"id":30966213,"url":"https://github.com/dodevops/jira-cloud-github-action","last_synced_at":"2026-02-13T03:20:17.592Z","repository":{"id":303598005,"uuid":"1016018539","full_name":"dodevops/jira-cloud-github-action","owner":"dodevops","description":"A Github action does things in Jira Cloud triggered from Github Actions.","archived":false,"fork":false,"pushed_at":"2025-08-07T07:55:16.000Z","size":13,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-08-07T09:33:44.170Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dodevops.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-07-08T11:17:16.000Z","updated_at":"2025-07-08T11:34:58.000Z","dependencies_parsed_at":"2025-07-08T12:57:57.847Z","dependency_job_id":"6c4d5b04-0959-417e-a885-896110c18d57","html_url":"https://github.com/dodevops/jira-cloud-github-action","commit_stats":null,"previous_names":["dodevops/jira-cloud-github-action"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/dodevops/jira-cloud-github-action","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dodevops%2Fjira-cloud-github-action","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dodevops%2Fjira-cloud-github-action/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dodevops%2Fjira-cloud-github-action/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dodevops%2Fjira-cloud-github-action/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dodevops","download_url":"https://codeload.github.com/dodevops/jira-cloud-github-action/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dodevops%2Fjira-cloud-github-action/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":274727963,"owners_count":25338402,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-11T02:00:13.660Z","response_time":74,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":[],"created_at":"2025-09-11T23:45:36.779Z","updated_at":"2026-02-13T03:20:17.076Z","avatar_url":"https://github.com/dodevops.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Jira Cloud Github Action\n\n## Introduction\n\nA Github action that does things in Jira Cloud when triggered from a Github Actions workflow.\n\nCurrently supported:\n\n* Adding a comment on a push or a pull request\n\n## Usage\n\nUse a workflow like this:\n\n```yaml\non:\n    - push\n    - pull_request\n\njobs:\n    jiracomment:\n        name: \"Comment on Jira\"\n        runs-on: ubuntu-latest\n        steps:\n            -   name: Checkout repository\n                uses: actions/checkout@v4\n                with:\n                    fetch-depth: \"0\"\n            -   uses: dodevops/jira-cloud-github-action@feature/dpr/first-version\n                with:\n                    url: \"https://mycompany.atlassian.net\"\n                    username: \"serviceuser@company.com\"\n                    token: ${{ secrets.JIRA_SERVICEUSER_TOKEN }}\n```\n\nThis will automatically send comments to Jira tickets identified by commits that contain a specific format.\n\nFor example, these three commits in a pull request created by \"user4 \u003cuser4@company.com\u003e\":\n\n* `(SUP-1234): Fixed problem` by user1 \u003cuser1@company.com\u003e\n* `(SUP-1234): Added feature` by user2 \u003cuser2@company.com\u003e\n* `(SUP-2345): Removed feature` by user3 \u003cuser3@company.com\u003e\n\nwill result in these two comments (the markdown format is converted to Jira markdown):\n\nComment on SUP-1234\n```\n*Pull Request*: [user4](mailto:user4@company.com) sent 2 commit(s) to [Pull request title]({{ https://linktopullrequest }})\n\n* (SUP-1234): Fixed problem ([user1](mailto:user1@company.com))\n* (SUP-1234): Added feature ([user2](mailto:user2@company.com))\n```\n\nComment on SUP-2345\n```\n*Pull Request*: [user4](mailto:user4@company.com) sent 1 commit(s) to [Pull request title]({{ https://linktopullrequest }})\n\n* (SUP-2345): Removed feature ([user3](mailto:user3@company.com))\n```\n\n## Options\n\n* *url*: The URL to your Jira Cloud instance (required)\n* *username*: The user name for API requests (required)\n* *token*: The user's token for API requests (required)\n* *loglevel*: The loglevel to use [INFO]\n* *commitParseRegExp*: The Regexp string to use to parse Jira issue ids from commit messages. Requires a named group called id that catches the whole issue id and a group project that catches only the project key [\\\\((?P\u003cid\u003e(?P\u003cproject\u003e[A-Za-z]+)-[0-9]+)\\\\)\"]\n* *commentTemplate*: The go template for the issue comment. Takes the CommitsInfo struct as an input [default see below]\n  ```yaml\n    *{{ .CommitsInfo.Type }}*: [{{ .CommitsInfo.AuthorName }}](mailto:{{ .CommitsInfo.AuthorEmail }}) sent {{ .Commits | len }} commit(s) to [{{ .CommitsInfo.Target }}]({{ .CommitsInfo.Target }})\n    \n    {{ range .Commits }}\n    * {{ .Message }} ([{{ .AuthorName }}](mailto:{{ .AuthorEmail }}))\n    {{ end }}\n    ```\n* *onlyProjects*: If specified, only issues with these project keys are processed\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdodevops%2Fjira-cloud-github-action","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdodevops%2Fjira-cloud-github-action","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdodevops%2Fjira-cloud-github-action/lists"}