summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenneth Daily <kdaily@users.noreply.github.com>2021-05-26 14:32:23 -0700
committerKenneth Daily <kdaily@users.noreply.github.com>2021-05-26 14:32:23 -0700
commitfa3404163f195e8fdb38022fe53f944f35e60def (patch)
treea15d8d60cb181cef680a1ee100d2564f04474848
parent087fe9eeb748deed2bb79123f76ee7eca01cd212 (diff)
downloadboto-fa3404163f195e8fdb38022fe53f944f35e60def.tar.gz
add fail PR GH action
-rw-r--r--.github/.workflows/main.yml13
1 files changed, 13 insertions, 0 deletions
diff --git a/.github/.workflows/main.yml b/.github/.workflows/main.yml
new file mode 100644
index 00000000..e5990e2b
--- /dev/null
+++ b/.github/.workflows/main.yml
@@ -0,0 +1,13 @@
+name: PRs are not reviewed
+
+on:
+ pull_request
+
+jobs:
+ fail:
+ runs-on: ubuntu-latest
+ steps:
+ - name: Fail PRs
+ run: |
+ echo "This repository is not maintained and PRs are not reviewed. Please use the 'boto3' package (https://github.com/boto/boto3/)."
+ exit 1