-
Notifications
You must be signed in to change notification settings - Fork 5
74 lines (72 loc) · 2.56 KB
/
automation.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
name: Bot
on:
issues:
types: [opened, reopened]
pull_request:
types: [opened, reopened]
jobs:
assign-security-issue:
if: ${{ github.event_name == 'issues' }}
name: Assign Security Label
env:
repo: ${{ github.head_ref }}
runs-on: ubuntu-latest
steps:
- name: Assign Security Label
if: ${{ contains(github.event.issue.title, 'security')}}
env:
GH_TOKEN: ${{ secrets.GH_PAT }}
run: |
gh issue edit ${{ github.event.issue.number }} --add-label "security"
assign-security-pr:
if: ${{ github.event_name == 'pull_request' }}
name: Assign Security Label
env:
repo: ${{ github.head_ref }}
runs-on: ubuntu-latest
steps:
- name: Assign Security Label
if: ${{ github.event.pull_request.draft == false && contains(github.event.pull_request.title, 'security')}}
env:
GH_TOKEN: ${{ secrets.GH_PAT }}
run: |
gh pr edit ${{ github.event.number }} --add-label "security"
assign-triage-pr:
if: ${{ github.event_name == 'pull_request' && github.event.pull_request.author_association != 'COLLABORATOR' && !startsWith(github.event.pull_request, 'BUMP')}}
name: Assign Triage Label
env:
repo: ${{ github.head_ref }}
runs-on: ubuntu-latest
steps:
- name: git checkout
uses: actions/checkout@v3
- name: I
run: |
echo ${{ github.event_name }}
echo ${{ github.event.sender.id }}
echo ${{ github.event.pull_request.author_association }}
- name: Assign Security Label
if: ${{ github.event.pull_request.draft == false }}
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
${{ github.event.sender.name }}
${{ github.event.pull_request.author_association }}
gh pr edit ${{ github.event.number }} --add-label "triage"
assign-community-pr:
if: ${{ github.event_name == 'pull_request' && github.event.pull_request.author_association != 'COLLABORATOR' && !startsWith(github.event.pull_request, 'BUMP')}}
name: Assign Triage Label
env:
repo: ${{ github.head_ref }}
runs-on: ubuntu-latest
steps:
- name: git checkout
uses: actions/checkout@v3
- name: Assign Security Label
if: ${{ github.event.pull_request.draft == false }}
env:
GH_TOKEN: ${{ secrets.GH_PAT }}
run: |
${{ github.event.sender.name }}
${{ github.event.pull_request.author_association }}
gh pr edit ${{ github.event.number }} --add-label "triage"