mirror of
https://github.com/tailscale/tailscale.git
synced 2026-02-12 08:51:51 -05:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 4.2.2 to 5.0.0.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](11bd71901b...08c6903cd8)
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-version: 5.0.0
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
33 lines
1.1 KiB
YAML
33 lines
1.1 KiB
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: Check out code
|
|
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
|
- name: Get access token
|
|
uses: actions/create-github-app-token@df432ceedc7162793a195dd1713ff69aefc7379e # v2.0.6
|
|
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
|