summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenneth Daily <kdaily@amazon.com>2022-04-20 10:44:24 -0700
committerGitHub <noreply@github.com>2022-04-20 10:44:24 -0700
commit1c96d95edf08eefd24185f912bac5bfa59699c28 (patch)
tree316fbbb08ee27a2a788acefb4067c46266dd954e
parentb2a6f08122b2f1b89888d2848e730893595cd001 (diff)
downloadboto-1c96d95edf08eefd24185f912bac5bfa59699c28.tar.gz
Add workflow on issue creation to comment
Comment that issues are not triaged.
-rw-r--r--.github/workflows/open_issue_message.yml13
1 files changed, 13 insertions, 0 deletions
diff --git a/.github/workflows/open_issue_message.yml b/.github/workflows/open_issue_message.yml
new file mode 100644
index 00000000..c9563e95
--- /dev/null
+++ b/.github/workflows/open_issue_message.yml
@@ -0,0 +1,13 @@
+name: Open Issue Message
+on:
+ issues:
+ 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/). Issues are not triaged or reviewed by AWS. The issues in this repository can be used by the community for support purposes. 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."