mirror of
https://github.com/tailscale/tailscale.git
synced 2026-06-24 07:52:47 -04:00
Add a workflow that requests review from @tailscale/k8s-devs on PRs touching Kubernetes operator, kube libraries, container build, etc. Also cleans up check out code on k8s and dataplane workflow. Updates #cleanup Change-Id: I6fd7cacf71e1299f7e8f546ef52c4063fbf6bab8 Signed-off-by: Fernando Serboncini <fserb@tailscale.com>
31 lines
1014 B
YAML
31 lines
1014 B
YAML
name: request-dataplane-review
|
|
|
|
on:
|
|
pull_request:
|
|
types: [opened, synchronize, reopened, ready_for_review]
|
|
paths:
|
|
- ".github/workflows/request-dataplane-review.yml"
|
|
- "**/*derp*"
|
|
- "**/derp*/**"
|
|
- "!**/depaware.txt"
|
|
|
|
jobs:
|
|
request-dataplane-review:
|
|
if: github.event.pull_request.draft == false
|
|
name: Request Dataplane Review
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Get access token
|
|
uses: actions/create-github-app-token@f8d387b68d61c58ab83c6c016672934102569859 # v3.0.0
|
|
id: generate-token
|
|
with:
|
|
# Get token for app: https://github.com/apps/change-visibility-bot
|
|
app-id: ${{ secrets.VISIBILITY_BOT_APP_ID }}
|
|
private-key: ${{ secrets.VISIBILITY_BOT_APP_PRIVATE_KEY }}
|
|
- name: Add reviewers
|
|
env:
|
|
GH_TOKEN: ${{ steps.generate-token.outputs.token }}
|
|
url: ${{ github.event.pull_request.html_url }}
|
|
run: |
|
|
gh pr edit "$url" --add-reviewer tailscale/dataplane
|