Commit 077dc84 1 parent a540049 commit 077dc84 Copy full SHA for 077dc84
File tree 3 files changed +37
-1
lines changed
3 files changed +37
-1
lines changed Original file line number Diff line number Diff line change
1
+ name: Close-issue
2
+
3
+ on:
4
+ pull_request:
5
+ types: [opened]
6
+ issue_comment:
7
+ types: [created]
8
+
9
+ jobs:
10
+ add_label:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v2
14
+ - uses: actions-ecosystem/action-add-labels@v1
15
+ if: ${{ startsWith(github.event.comment.body, '/close-issue/') }}
16
+ with:
17
+ github_token: ${{ secrets.GITHUB_TOKEN }}
18
+ labels: close-issue
Original file line number Diff line number Diff line change 1
- name : Close
1
+ name : Close-pr
2
2
3
3
on :
4
4
pull_request :
Original file line number Diff line number Diff line change
1
+ name : gssoc
2
+
3
+ on :
4
+ pull_request :
5
+ types : [opened]
6
+ issue_comment :
7
+ types : [created]
8
+
9
+ jobs :
10
+ add_label :
11
+ runs-on : ubuntu-latest
12
+ steps :
13
+ - uses : actions/checkout@v2
14
+ - uses : actions-ecosystem/action-add-labels@v1
15
+ if : ${{ startsWith(github.event.comment.body, '/gssoc/') }}
16
+ with :
17
+ github_token : ${{ secrets.GITHUB_TOKEN }}
18
+ labels : GSSOC21
You can’t perform that action at this time.
0 commit comments