-
-
Notifications
You must be signed in to change notification settings - Fork 785
28 lines (25 loc) · 894 Bytes
/
auto-close.yml
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
name: Auto Close Issue Workflow
on:
issues:
types:
- opened
- reopened
- edited
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NUMBER: ${{ github.event.issue.number }}
USER: ${{ github.event.issue.user.login }}
REPO: "gorhom/react-native-bottom-sheet"
jobs:
autoclose:
if: ${{ !contains(github.event.issue.body, 'snack.expo.dev') && !contains(github.event.issue.body, 'gorhom.dev')}}
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- name: Close Issue
run: gh issue close "$NUMBER" --comment "Hello @$USER :wave:, this issue is being automatically closed and locked because it does not follow the issue template." --repo "$REPO"
- name: Label Issue
run: gh issue edit "$NUMBER" --add-label "invalid" --repo "$REPO"
- name: Lock Issue
run: gh issue lock "$NUMBER" -r "spam" --repo "$REPO"