From 4fd348814e58e0b44f166af1867fbff79560aaf7 Mon Sep 17 00:00:00 2001 From: PauBadiaM Date: Mon, 1 Dec 2025 10:48:41 -0800 Subject: [PATCH] Redirect to new repo --- .github/workflows/deprecation-comment.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/deprecation-comment.yml diff --git a/.github/workflows/deprecation-comment.yml b/.github/workflows/deprecation-comment.yml new file mode 100644 index 0000000..5226d4c --- /dev/null +++ b/.github/workflows/deprecation-comment.yml @@ -0,0 +1,23 @@ +name: Deprecation Auto-Close + +on: + issues: + types: [opened] + +jobs: + deprecate: + runs-on: ubuntu-latest + steps: + - name: Comment and close issue + uses: peter-evans/close-issue@v3 + with: + token: ${{ secrets.GITHUB_TOKEN }} + issue-number: ${{ github.event.issue.number }} + comment: | + ⚠️ **This repository is deprecated.** + + Thank you for opening an issue, but this repo is no longer maintained. + + 👉 Please open issues in the new repository instead: + https://github.com/scverse/decoupler +