Skip to content

Fix Feast doc section header (#1292) #529

Fix Feast doc section header (#1292)

Fix Feast doc section header (#1292) #529

Workflow file for this run

name: Backport changes to latest maintenance branch
on:
push:
branches:
- main
jobs:
backport:
strategy:
matrix:
branch: ['v/5.1']
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/[email protected]
with:
fetch-depth: 0
- name: Set up git config
run: |
git config user.name "GitHub Actions Bot"
git config user.email "<>"
- name: Check PR for backport label
id: check_pr_labels
uses: shioyang/[email protected]
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
labels: '["backport to 5.1"]'
- name: See result
run: echo "${{ steps.check_pr_labels.outputs.result }}"
- name: Checkout maintenance branch and cherry-pick
if: ${{ steps.check_pr_labels.outputs.result == 'true' }}
run: |
git fetch
git checkout ${{ matrix.branch }}
git cherry-pick -x --strategy=recursive -X theirs $GITHUB_SHA
git push