forked from DataDog/datadog-agent
-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (38 loc) · 1.37 KB
/
external-contributor.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
---
name: Handle External Contributor PRs
on:
# run in the context of the base branch, so that it still works in PR from forks
pull_request_target:
types: [opened, reopened]
jobs:
external-contributor-prs:
name: Handle Fork PRs
runs-on: ubuntu-latest
if: github.event.pull_request.head.repo.full_name != github.repository
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
ref: main
fetch-depth: 0
- name: Setup python
uses: actions/setup-python@v5
with:
python-version: 3.11
cache: 'pip'
cache-dependency-path: '**/requirements*.txt'
- name: Install dependencies
run: pip install -r requirements.txt -r tasks/requirements.txt
- name: Set label on external contributor PRs
run: |
gh issue edit "$NUMBER" --milestone "$MILESTONE"
inv -e github.handle-community-pr --repo="$GH_REPO" --pr-id="$NUMBER" --labels="$LABELS"
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SLACK_API_TOKEN: ${{ secrets.SLACK_DATADOG_AGENT_BOT_TOKEN }}
GH_REPO: ${{ github.repository }}
NUMBER: ${{ github.event.number }}
# labels is a comma-separated list of tags
LABELS: community,team/triage
MILESTONE: Triage