e768098d0e
Flake8 Lint / flake8 (push) Waiting to run
Publish Promptflow Doc / Build (push) Waiting to run
Publish Promptflow Doc / Deploy (push) Blocked by required conditions
Spell check CI / Spell_Check (push) Waiting to run
tools_continuous_delivery / Private PyPI non-main branch release (push) Has been skipped
tools_continuous_delivery / Private PyPI main branch release (push) Failing after 2m42s
12 lines
330 B
YAML
12 lines
330 B
YAML
name: step_merge_main
|
|
runs:
|
|
using: composite
|
|
steps:
|
|
- name: Merge main to current branch
|
|
working-directory: ${{ github.workspace }}
|
|
shell: pwsh
|
|
run: |
|
|
git config --global user.name 'prompt flow fundamental'
|
|
git config --global user.email 'aml-pt-eng@microsoft.com'
|
|
git pull --no-ff origin main
|