diff --git a/.gitea/pull_request_template.md b/.gitea/pull_request_template.md index 2898128ae..df467e9ee 100644 --- a/.gitea/pull_request_template.md +++ b/.gitea/pull_request_template.md @@ -13,11 +13,11 @@ closes #(another issue) Please put an x inside each checkbox to indicate that you've read and followed it: `[ ]` -> `[x]` -If this is a documentation change, only the first checkbox must be filled (you can delete the others if you want). +If this is a documentation change, only the first two checkboxes must be filled (you can delete the others if you want). - [ ] I/we have read the [GoToSocial contribution guidelines](https://codeberg.org/superseriousbusiness/gotosocial/src/branch/main/CONTRIBUTING.md). +- [ ] I/we have not used so-called 'AI' to create the proposed changes. - [ ] I/we have discussed the proposed changes already, either in an issue on the repository, or in the Matrix chat. -- [ ] I/we have not leveraged AI to create the proposed changes. - [ ] I/we have performed a self-review of added code. - [ ] I/we have written code that is legible and maintainable by others. - [ ] I/we have commented the added code, particularly in hard-to-understand areas. diff --git a/.github/README.md b/.github/README.md deleted file mode 100644 index 1855a149a..000000000 --- a/.github/README.md +++ /dev/null @@ -1,5 +0,0 @@ -# GoToSocial - -This is a mirror. You can find us on https://codeberg.org/superseriousbusiness/gotosocial. - -We will **stop mirroring** to Github after 0.20 is released. This will likely be sometime **in August**. diff --git a/.github/workflows/autoclose.yaml b/.github/workflows/autoclose.yaml deleted file mode 100644 index 39de87428..000000000 --- a/.github/workflows/autoclose.yaml +++ /dev/null @@ -1,30 +0,0 @@ -on: - issues: - types: [opened] - pull_request_target: - types: [opened] - -permissions: - issues: write - pull-requests: write - -jobs: - autoclose: - runs-on: ubuntu-latest - steps: - - name: issue - if: ${{ github.event.issue.id != '' }} - run: | - gh issue close $ISSUE --comment "This repository is a mirror. Please open issues on https://codeberg.org/superseriousbusiness/gotosocial." --reason "not planned" - gh issue lock $ISSUE - env: - GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} - ISSUE: ${{ github.event.issue.html_url }} - - name: pr - if: ${{ github.event.pull_request.id != '' }} - run: | - gh pr close $PULL_REQUEST --comment "This repository is a mirror. Please open PRs on https://codeberg.org/superseriousbusiness/gotosocial." - gh pr lock $PULL_REQUEST - env: - GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} - PULL_REQUEST: ${{ github.event.pull_request.html_url }}