mirror of
https://github.com/timescale/timescaledb.git
synced 2025-05-16 02:23:49 +08:00
This commit adds a workflow for running pull-review in the serverless mode, using docker container CLI.
11 lines
262 B
Bash
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
|
|
|