From 1186c478a18fba1c3eba83bb56dbdbb093b42910 Mon Sep 17 00:00:00 2001 From: Jaye Hernandez Date: Thu, 27 Oct 2022 23:14:02 +0800 Subject: [PATCH 1/2] Add contact us in Contributing --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e6965f27..3a7faf4e 100644 --- a/README.md +++ b/README.md @@ -67,7 +67,7 @@ We've had almost ~160 [contributors](https://github.com/jayehernandez/letra-extension/graphs/contributors) since launching this, a huge **thank you** to everyone who has contributed in one way or another! Starting October 2022, contributions, issues, and feature requests are put on hold until further notice ([v1.0.15](https://github.com/jayehernandez/letra-extension/releases/tag/v1.0.15)). -As the repository is still made available to public, you are free to **fork** this instead and work on new features in your copy, for your own personal use. +As the repository is still made available to public, you are free to **fork** this instead and work on new features in your copy, for your own personal use. If you have any questions, feel free to [contact us](https://letra.vercel.app/#contact)! ### Installation From c6878b18b463574308ae45799adc428bea129a32 Mon Sep 17 00:00:00 2001 From: Jaye Hernandez Date: Thu, 27 Oct 2022 23:14:14 +0800 Subject: [PATCH 2/2] Add auto close issue and PR --- .github/workflows/close-issue.yml | 14 ++++++++++++++ .github/workflows/close-pr.yml | 14 ++++++++++++++ 2 files changed, 28 insertions(+) create mode 100644 .github/workflows/close-issue.yml create mode 100644 .github/workflows/close-pr.yml diff --git a/.github/workflows/close-issue.yml b/.github/workflows/close-issue.yml new file mode 100644 index 00000000..940c24a8 --- /dev/null +++ b/.github/workflows/close-issue.yml @@ -0,0 +1,14 @@ +name: Close Issue + +on: + issues: + types: [opened] + +jobs: + run: + runs-on: ubuntu-latest + steps: + - uses: peter-evans/close-issue@v2 + with: + comment: | + Hi there! This repository is currently not accepting new issues. For more info, please check out our [README](https://github.com/jayehernandez/letra-extension#-contributing). If you have any questions, please feel free to [contact us](https://letra.vercel.app/#contact). diff --git a/.github/workflows/close-pr.yml b/.github/workflows/close-pr.yml new file mode 100644 index 00000000..5be8088e --- /dev/null +++ b/.github/workflows/close-pr.yml @@ -0,0 +1,14 @@ +name: Close Pull Request + +on: + pull_request_target: + types: [opened] + +jobs: + run: + runs-on: ubuntu-latest + steps: + - uses: superbrothers/close-pull-request@v3 + with: + comment: | + Hi there! This repository is currently not accepting new PRs. For more info, please check out our [README](https://github.com/jayehernandez/letra-extension#-contributing). If you have any questions, please feel free to [contact us](https://letra.vercel.app/#contact)."