Skip to content
This repository has been archived by the owner on Jul 24, 2024. It is now read-only.

Latest commit

 

History

History
24 lines (18 loc) · 469 Bytes

README.md

File metadata and controls

24 lines (18 loc) · 469 Bytes

backport-action

GitHub Action to backport pull requests.

Put this in your .github/workflows/backport.yml:

name: Backport

on:
  pull_request:
    types:
      - closed
      - labeled

jobs:
  backport:
    runs-on: ubuntu-latest
    name: Backport closed pull request
    steps:
    - uses: syndesisio/backport-action@v1

And for each pull request that needs to be backported to branch <branch> add a backport <branch> label on the pull request.