Durable OpenAI Agents (#574) #70
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Sync submodule pipeline | ||
Check failure on line 1 in .github/workflows/submodule-sync.yml
|
||
on: | ||
push: | ||
branches: [ submodule ] | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
repository: azure-functions-python-library | ||
submodules: true | ||
- id: Go to submodule | ||
run: | | ||
cd azure/functions/durable | ||
git submodule update --remote --merge | ||
git add . | ||
- name: Create Pull Request | ||
id: createPullRequest | ||
uses: peter-evans/create-pull-request@v4 | ||
with: | ||
commit-message: Update durable submodule | ||
committer: GitHub <[email protected]> | ||
branch: submodule-sync | ||
delete-branch: true | ||
title: 'Update durable submodule' | ||
body: | | ||
Updated submodule | ||
[1]: https://github.com/peter-evans/create-pull-request | ||
labels: | | ||
required submodule update | ||
automated pr | ||
reviewers: vameru | ||
- name: Check outputs | ||
run: | | ||
echo "Pull Request Number - ${{ steps.createPullRequest.outputs.pull-request-number }}" | ||
echo "Pull Request URL - ${{ steps.createPullRequest.outputs.pull-request-url }}" |