Skip to content

Commit

Permalink
Add backport funcitonality for tiledb-cloud-py
Browse files Browse the repository at this point in the history
  • Loading branch information
ktsitsi committed Oct 8, 2024
1 parent 3b957a7 commit aa75512
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/backport.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Backport
on:
pull_request_target:
types:
- closed
- labeled
paths-ignore:
- '_quarto.yml'
- 'quarto-materials/*'
- '**/.md'

jobs:
backport:
name: Backport
runs-on: ubuntu-22.04
if: >
github.event.pull_request.merged &&
(
github.event.action == 'closed' ||
(
github.event.action == 'labeled' &&
contains(github.event.label.name, 'backport')
)
)
steps:
- name: Backport
uses: zephyrproject-rtos/action-backport@7e74f601d11eaca577742445e87775b5651a965f #tag=v2.0.3-3
with:
issue_labels: Backport
github_token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit aa75512

Please sign in to comment.