https://github.com/christopwner/snow-jira-sync
Script for synchronizing ServiceNow incidents to Atlassian JIRA issues.
https://github.com/christopwner/snow-jira-sync
jira servicenow
Last synced: 2 months ago
JSON representation
Script for synchronizing ServiceNow incidents to Atlassian JIRA issues.
- Host: GitHub
- URL: https://github.com/christopwner/snow-jira-sync
- Owner: christopwner
- License: gpl-3.0
- Created: 2019-04-29T21:06:34.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-05-06T17:05:17.000Z (about 6 years ago)
- Last Synced: 2025-01-28T16:33:00.235Z (4 months ago)
- Topics: jira, servicenow
- Language: Python
- Homepage:
- Size: 21.5 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# snow-jira-sync
Python utility scripts for synchronizing incidents on ServiceNow to JIRA. Used in lue of snow/jira extensions due to not having admin access to either.## s2j
ServiceNow to JIRA sync. Pulls all incidents from SNow assigned to a specified user and creates issues (bugs) in JIRA. Closes incident once migrated.#### Configuration
The following env vars should be setup for the s2j.py script:
* SNOW_NAME (snow tenant to logon, ie https://**tenant**.servicenow.com)
* SNOW_USER (snow user used to login as and to assign incidents to for sync with JIRA)
* SNOW_PASS (snow password used to login)* JIRA_NAME (jira tenant to logon, ie https://**tenant**.atlassian.net)
* JIRA_PROJECT (jira project to create issues)
* JIRA_USER (jira user used to login)
* JIRA_TOKEN (jira api token used to login, see https://id.atlassian.com/manage/api-tokens)