-
Notifications
You must be signed in to change notification settings - Fork 147
53 lines (44 loc) · 1.46 KB
/
pr_opened.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
name: PR Opened
on:
pull_request_target:
types: [opened]
permissions:
contents: read
pull-requests: write
issues: write
jobs:
# based on the scikit-learn 1.3.1 PR labelers
labeler:
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v4
with:
sparse-checkout: .github/utilities
- name: Setup Python 3.10
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install PyGithub
run: pip install -Uq PyGithub
- name: Create app token
uses: actions/create-github-app-token@v1
id: app-token
with:
app-id: ${{ vars.PR_APP_ID }}
private-key: ${{ secrets.PR_APP_KEY }}
- name: Label pull request
id: label-pr
run: python .github/utilities/pr_labeler.py
env:
CONTEXT_GITHUB: ${{ toJson(github) }}
GITHUB_TOKEN: ${{ steps.app-token.outputs.token }}
- name: Write pull request comment
run: python .github/utilities/pr_open_commenter.py
env:
CONTEXT_GITHUB: ${{ toJson(github) }}
GITHUB_TOKEN: ${{ steps.app-token.outputs.token }}
TITLE_LABELS: ${{ steps.label-pr.outputs.title-labels }}
TITLE_LABELS_NEW: ${{ steps.label-pr.outputs.title-labels-new }}
CONTENT_LABELS: ${{ steps.label-pr.outputs.content-labels }}
CONTENT_LABELS_STATUS: ${{ steps.label-pr.outputs.content-labels-status }}