-
-
Notifications
You must be signed in to change notification settings - Fork 156
29 lines (27 loc) · 1.09 KB
/
assign-issues.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
29
name: Auto Assign Issues
on:
issue_comment:
types: [created]
schedule:
- cron: '0 0 * * *'
workflow_dispatch:
jobs:
slash_assign:
if: >
(github.event_name == 'issue_comment' && (
contains(github.event.comment.body, '/assign') ||
startsWith(github.event.comment.body, '/unassign') ||
contains(github.event.comment.body, 'assign to me') ||
contains(github.event.comment.body, 'assign this to me') ||
contains(github.event.comment.body, 'please assign me this') ||
contains(github.event.comment.body, 'assign this to me') ||
contains(github.event.comment.body, 'I can try fixing this') ||
contains(github.event.comment.body, 'i am interested in doing this') ||
contains(github.event.comment.body, 'I am interested in contributing'))) || github.event_name == 'schedule' || github.event_name == 'workflow_dispatch'
runs-on: ubuntu-latest
steps:
- name: Assign Issues
uses: OWASP/BLT-Action@main
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
repository: ${{ github.repository }}