Skip to content

[PROCS-4154] Create E2E tests for the process-agent on k8s #4743

[PROCS-4154] Create E2E tests for the process-agent on k8s

[PROCS-4154] Create E2E tests for the process-agent on k8s #4743

---
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@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
with:
ref: main
fetch-depth: 0
- name: Setup python
uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # v5.1.0
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