From 8e25300c5c772663d5f008c5407c0818519697b7 Mon Sep 17 00:00:00 2001 From: Kee Jefferys Date: Fri, 21 Mar 2025 10:11:22 +1100 Subject: [PATCH] Auto close new issues Auto close new issues and direct users to the new STF - Session Android repo --- .github/workflows/auto-close-issues.yml | 38 +++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 .github/workflows/auto-close-issues.yml diff --git a/.github/workflows/auto-close-issues.yml b/.github/workflows/auto-close-issues.yml new file mode 100644 index 0000000000..d79cc5ef31 --- /dev/null +++ b/.github/workflows/auto-close-issues.yml @@ -0,0 +1,38 @@ +name: Auto Close issues + +on: + issues: + types: [opened] + +jobs: + close_issue_from_unwhitelisted: + runs-on: ubuntu-latest + steps: + - name: Check issue author and act + uses: actions/github-script@v6 + with: + github-token: ${{ secrets.GITHUB_TOKEN }} + script: | + // Define your whitelist of allowed users here: + const whitelist = ['KeeJef']; + + const issueAuthor = context.payload.issue.user.login; + + // If the user is not in the whitelist, comment and close the issue + if (!whitelist.includes(issueAuthor)) { + // Post a comment directing them to the new repository + await github.rest.issues.createComment({ + owner: context.repo.owner, + repo: context.repo.repo, + issue_number: context.issue.number, + body: "Hi @"+issueAuthor+", thanks for opening an issue, this repository is now deprecated. However, Session Android is still actively developed [here](https://github.com/session-foundation/session-android). This is in line with announcements from [Session](https://getsession.org/blog/introducing-the-session-technology-foundation) and the [OPTF](https://optf.ngo/blog/the-optf-and-session), indicating that the OPTF has handed over the stewardship of the Session Project to the [Session Technology Foundation](https://session.foundation), a Swiss-based foundation dedicated to advancing digital rights and innovation. Please reopen your issue in the new repo: [here](https://github.com/session-foundation/session-android/issues)." + }); + + // Close the issue + await github.rest.issues.update({ + owner: context.repo.owner, + repo: context.repo.repo, + issue_number: context.issue.number, + state: 'closed' + }); + }