Skip to content

Update run-fe-ut.sh

Update run-fe-ut.sh #6

Workflow file for this run

name: Auto Cherry-Pick to Branch
on:
pull_request:
types:
- closed
branches:
- master
jobs:
auto_cherry_pick:
runs-on: ubuntu-latest
if: github.event.pull_request.merged == true
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install dependencies
run: |
pip install PyGithub
- name: Auto cherry-pick
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
REPO_NAME: ${{ github.repository }}
CONFLICT_LABEL: cherry-pick-conflict-in-2.1
run: |
python tools/auto-pick-script.py ${{ github.event.pull_request.number }} branch-2.1