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

GitHub Action to backport pull requests

License

Notifications You must be signed in to change notification settings

syndesisio/backport-action

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

55 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.