This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
############################################################################################################################ | |
# NOTE1: You will need to supply the JIRA API credentials down below under "JIRA API credentials and Issue Category" section | |
# NOTE2: You will need to modify the issue type id variable "mm_jira_cloud_it_tic_issue_type" (# Issue Type can be found in | |
# JIRA > Administration > Issues > Issue Types > copy link of Edit button next to the issue type and there will be ID at the end) | |
# NOTE3: You can modify the ticket creation wording for the summary and description, however make sure you match the issue/ticket | |
# presence check section as well, as it uses specific wording in the issue/ticket summary ("AUTOMATED TICKET") and the Reporter, | |
# so that if 1 issue/ticket is already created for the user > it will not keep creating more similar tickets! | |
# The rest of the script you can leave intact |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from datetime import datetime | |
import time | |
import os | |
import pytz | |
######################################################################################################################## | |
# THIS PROGRAM WILL READ a NUMBER FROM TEMP FILE, THEN PLACE THAT NUMBER INTO A CSV (APPEND) FILE WITH DATE/TIME STAMP # | |
# | |
# NOTE: You may need to modify permissions/ownership of the folder where the files will be located | |
# To find out which user the python script is running as, comment out everything and just add these 2 lines: |
OlderNewer