Skip to content

Instantly share code, notes, and snippets.

View cburgmer's full-sized avatar

Christoph Burgmer cburgmer

View GitHub Profile
@cburgmer
cburgmer / slackbot_reminder_bitbucket_pullrequests.py
Last active January 4, 2022 16:24 — forked from joemaffia/slackbot_reminder_bitbucket_pullrequests.py
Slack Bot reminder for Bitbucket pull requests
import os
import sys
import requests
import json
POST_URL = 'https://slack.com/api/chat.postMessage'
REPOSITORY_PR = 'https://{{ your corporate server }}/rest/api/1.0/projects/{{ your project }}/repos/{{ your repo }}/pull-requests?state=OPEN'
SLACK_CHANNEL = '#{{ your channel }}'