summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenneth Daily <kdaily@amazon.com>2022-04-20 11:37:59 -0700
committerKenneth Daily <kdaily@amazon.com>2022-04-20 11:37:59 -0700
commit3dd26f0a14ae7acf8df1befedfb40ccdc3b0fc2f (patch)
tree92271d4de962b6188a77817d87f83c1a5f69b23d
parent1c96d95edf08eefd24185f912bac5bfa59699c28 (diff)
downloadboto-3dd26f0a14ae7acf8df1befedfb40ccdc3b0fc2f.tar.gz
Add workflow to comment on opened prs.
-rw-r--r--.github/workflows/open_pr_message.yml13
1 files changed, 13 insertions, 0 deletions
diff --git a/.github/workflows/open_pr_message.yml b/.github/workflows/open_pr_message.yml
new file mode 100644
index 00000000..f77d7cc0
--- /dev/null
+++ b/.github/workflows/open_pr_message.yml
@@ -0,0 +1,13 @@
+name: Open Issue Message
+on:
+ pull_request:
+ types: [opened]
+jobs:
+ auto_comment:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: aws-actions/closed-issue-message@v1
+ with:
+ # These inputs are both required
+ repo-token: "${{ secrets.GITHUB_TOKEN }}"
+ message: "This package is no longer maintained and has been replaced by [`boto3`](https://github.com/boto/boto3/). Pull requests are not reviewed by AWS and will not be merged. If you are having an issue with the [`boto3`](https://github.com/boto/boto3/) package or the [AWS CLI](https://github.com/aws/aws-cli/), please open an issue on their respective repositories."