summaryrefslogtreecommitdiff
path: root/.github/workflows/autoclose.yaml
blob: 39de87428613377abbd141ef1fa89312d37fb374 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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 }}