This file contains hidden or 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
import sys | |
import subprocess | |
import json | |
# importing the requests library | |
from urllib import request, parse | |
webhook_url = 'https://hooks.slack.com/services/HOOK URL' | |
SWARM_URL = 'https://swarm.project.com' | |
def get_desc(change): |
This file contains hidden or 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
import sys | |
import subprocess | |
import re | |
JIRA_URL = 'https://jira.pineoc.com/browse/' | |
def get_desc(change): | |
try: | |
cmd = ['p4', 'describe', change] | |
desc = subprocess.check_output(cmd).decode() |
This file contains hidden or 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
// Fill out your copyright notice in the Description page of Project Settings. | |
#include "MyGameModeBase.h" | |
void AMyGameModeBase::crashMe() | |
{ | |
// ensureMsg(false, TEXT("Node is invalid")); | |
ensure(false); | |
check(false); |
OlderNewer