timescaledb/scripts/pull-review.sh
Konstantina Skovola 0e9dd3c70b Add config file and workflow for pull-review
This commit adds a workflow for running pull-review in
the serverless mode, using docker container CLI.
2022-07-20 09:16:46 +03:00

11 lines
262 B
Bash

#!/usr/bin/env bash
#
# This script runs pull-review on a pull request
# to intelligently assign reviewers to it.
#
PULL_REVIEW_GITHUB_TOKEN=$1
PULL_REQUEST_URL=$2
docker run ghcr.io/imsky/pull-review $PULL_REQUEST_URL --github-token $PULL_REVIEW_GITHUB_TOKEN