mirror of
https://github.com/tree-sitter/tree-sitter.git
synced 2026-09-10 07:26:23 -04:00
Problem: actions/checkout@v7 refuses to checkout fork pull request code on `pull_request_target` trigger, breaking backport and reviewers-remove workflows on external PRs. Solution: * backport: Checkout the merged-into base branch by name. * reviewers-remove: inline script so no checkout needed.
35 lines
870 B
YAML
35 lines
870 B
YAML
name: Backport Pull Request
|
|
|
|
on:
|
|
pull_request_target:
|
|
types: [closed, labeled]
|
|
|
|
permissions:
|
|
contents: write
|
|
pull-requests: write
|
|
|
|
jobs:
|
|
backport:
|
|
if: github.event.pull_request.merged
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v7.0.0
|
|
with:
|
|
persist-credentials: true
|
|
ref: ${{ github.event.pull_request.base.ref }}
|
|
|
|
- name: Create app token
|
|
uses: actions/create-github-app-token@v3
|
|
id: app-token
|
|
with:
|
|
app-id: ${{ vars.BACKPORT_APP }}
|
|
private-key: ${{ secrets.BACKPORT_KEY }}
|
|
|
|
- name: Create backport PR
|
|
uses: korthout/backport-action@v4.5.2
|
|
with:
|
|
pull_title: "${pull_title}"
|
|
label_pattern: "^ci:backport ([^ ]+)$"
|
|
github_token: ${{ steps.app-token.outputs.token }}
|