{"id":14980390,"url":"https://github.com/atlassianps/jiraps","last_synced_at":"2025-04-09T05:09:53.531Z","repository":{"id":34792046,"uuid":"38776072","full_name":"AtlassianPS/JiraPS","owner":"AtlassianPS","description":"PowerShell module to interact with Atlassian JIRA","archived":false,"fork":false,"pushed_at":"2024-09-25T13:50:36.000Z","size":2724,"stargazers_count":331,"open_issues_count":146,"forks_count":130,"subscribers_count":40,"default_branch":"develop","last_synced_at":"2025-04-09T05:09:44.470Z","etag":null,"topics":["api","atlassian","atlassianps","jira","powershell","powershell-gallery","rest","windows-powershell"],"latest_commit_sha":null,"homepage":"https://AtlassianPS.org/module/JiraPS","language":"PowerShell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/AtlassianPS.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":".github/CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":".github/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},"funding":{"github":["lipkau","atlassianps"]}},"created_at":"2015-07-08T19:47:00.000Z","updated_at":"2025-02-05T00:08:29.000Z","dependencies_parsed_at":"2024-11-24T20:29:26.396Z","dependency_job_id":"53a87ae4-f34c-4dd1-a2b8-2cf00b5860e7","html_url":"https://github.com/AtlassianPS/JiraPS","commit_stats":{"total_commits":892,"total_committers":45,"mean_commits":"19.822222222222223","dds":0.4910313901345291,"last_synced_commit":"845495f7a1154b214210375798c2c334f58d1ae0"},"previous_names":[],"tags_count":53,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AtlassianPS%2FJiraPS","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AtlassianPS%2FJiraPS/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AtlassianPS%2FJiraPS/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AtlassianPS%2FJiraPS/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/AtlassianPS","download_url":"https://codeload.github.com/AtlassianPS/JiraPS/tar.gz/refs/heads/develop","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247980837,"owners_count":21027808,"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","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":["api","atlassian","atlassianps","jira","powershell","powershell-gallery","rest","windows-powershell"],"created_at":"2024-09-24T14:01:41.927Z","updated_at":"2025-04-09T05:09:53.515Z","avatar_url":"https://github.com/AtlassianPS.png","language":"PowerShell","funding_links":["https://github.com/sponsors/lipkau","https://github.com/sponsors/atlassianps"],"categories":[],"sub_categories":[],"readme":"---\r\nlayout: module\r\npermalink: /module/JiraPS/\r\n---\r\n# [JiraPS](https://atlassianps.org/module/JiraPS)\r\n\r\n[![GitHub release](https://img.shields.io/github/release/AtlassianPS/JiraPS.svg?style=for-the-badge)](https://github.com/AtlassianPS/JiraPS/releases/latest)\r\n[![Build Status](https://img.shields.io/github/actions/workflow/status/AtlassianPS/JiraPS/build_and_test.yml?style=for-the-badge)](https://github.com/AtlassianPS/JiraPS/actions/workflows/build_and_test.yml)\r\n[![PowerShell Gallery](https://img.shields.io/powershellgallery/dt/JiraPS.svg?style=for-the-badge)](https://www.powershellgallery.com/packages/JiraPS)\r\n![License](https://img.shields.io/badge/license-MIT-blue.svg?style=for-the-badge)\r\n\r\nJiraPS is a Windows PowerShell module to interact with Atlassian [JIRA] via a REST API, while maintaining a consistent PowerShell look and feel.\r\n\r\nJoin the conversation on [![SlackLogo][] AtlassianPS.Slack.com](https://atlassianps.org/slack)\r\n\r\n[SlackLogo]: https://atlassianps.org/assets/img/Slack_Mark_Web_28x28.png\r\n\u003c!--more--\u003e\r\n\r\n---\r\n\r\n## Instructions\r\n\r\n### Installation\r\n\r\nInstall JiraPS from the [PowerShell Gallery]! `Install-Module` requires PowerShellGet (included in PS v5, or download for v3/v4 via the gallery link)\r\n\r\n```powershell\r\n# One time only install:\r\nInstall-Module JiraPS -Scope CurrentUser\r\n\r\n# Check for updates occasionally:\r\nUpdate-Module JiraPS\r\n```\r\n\r\n### Usage\r\n\r\n```powershell\r\n# To use each session:\r\nImport-Module JiraPS\r\nSet-JiraConfigServer 'https://YourCloud.atlassian.net'\r\nNew-JiraSession -Credential $cred\r\n```\r\n\r\nYou can find the full documentation on our [homepage](https://atlassianps.org/docs/JiraPS) and in the console.\r\n\r\n```powershell\r\n# Review the help at any time!\r\nGet-Help about_JiraPS\r\nGet-Command -Module JiraPS\r\nGet-Help Get-JiraIssue -Full # or any other command\r\n```\r\n\r\nFor more information on how to use JiraPS, check out the [Documentation](https://atlassianps.org/docs/JiraPS/).\r\n\r\n### Contribute\r\n\r\nWant to contribute to AtlassianPS? Great!\r\nWe appreciate [everyone](https://atlassianps.org/#people) who invests their time to make our modules the best they can be.\r\n\r\nCheck out our guidelines on [Contributing] to our modules and documentation.\r\n\r\n#### DevContainer\r\n\r\nThis repository offers a [\"devcontainer\"](https://containers.dev/) setup.\r\n\r\n\u003e **What are Development Containers?**  \r\n\u003e A development container (or dev container for short) allows you to use\r\n\u003e a container as a full-featured development environment.\r\n\u003e It can be used to run an application, to separate tools, libraries,\r\n\u003e or runtimes needed for working with a codebase,\r\n\u003e and to aid in continuous integration and testing.\r\n\r\nYou can use the devcontainer to spin up a fine tuned development environment with\r\neverything you need for working on this project.\r\n\r\nThe easiest way for using DevContainers is with [VS Code](https://code.visualstudio.com/),\r\nits extension `ms-vscode-remote.remote-containers`,\r\nand [docker](https://docs.docker.com/engine/install/).  \r\nWhen opening the repository in VS Code, it will recommend the installation of the extension.\r\nAnd once installed, you will be prompted to \"Reopen in Container\".\r\n\r\n## Tested on\r\n\r\n* Windows Powershell v3\r\n* Windows Powershell v4\r\n* Windows Powershell v5.1\r\n* Powershell Core (latest) on Windows\r\n* Powershell Core (latest) on Ubuntu\r\n* Powershell Core (latest) on MacOS\r\n\r\n## Acknowledgements\r\n\r\n* Thanks to [replicaJunction] for getting this module on its feet\r\n* Thanks to everyone ([Our Contributors](https://atlassianps.org/#people)) that helped with this module\r\n\r\n## Useful links\r\n\r\n* [Source Code]\r\n* [Latest Release]\r\n* [Submit an Issue]\r\n* [Contributing]\r\n* How you can help us: [List of Issues](https://github.com/AtlassianPS/JiraPS/issues?q=is%3Aissue+is%3Aopen+label%3Aup-for-grabs)\r\n\r\n## Disclaimer\r\n\r\nHopefully this is obvious, but:\r\n\r\n\u003e This is an open source project (under the [MIT license]), and all contributors are volunteers. All commands are executed at your own risk. Please have good backups before you start, because you can delete a lot of stuff if you're not careful.\r\n\r\n\u003c!-- reference-style links --\u003e\r\n  [JIRA]: https://www.atlassian.com/software/jira\r\n  [PowerShell Gallery]: https://www.powershellgallery.com/\r\n  [Source Code]: https://github.com/AtlassianPS/JiraPS\r\n  [Latest Release]: https://github.com/AtlassianPS/JiraPS/releases/latest\r\n  [Submit an Issue]: https://github.com/AtlassianPS/JiraPS/issues/new\r\n  [replicaJunction]: https://github.com/replicaJunction\r\n  [MIT license]: https://github.com/AtlassianPS/JiraPS/blob/master/LICENSE\r\n  [Contributing]: http://atlassianps.org/docs/Contributing\r\n\r\n\u003c!-- [//]: # (Sweet online markdown editor at http://dillinger.io) --\u003e\r\n\u003c!-- [//]: # (\"GitHub Flavored Markdown\" https://help.github.com/articles/github-flavored-markdown/) --\u003e\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fatlassianps%2Fjiraps","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fatlassianps%2Fjiraps","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fatlassianps%2Fjiraps/lists"}