Skip to content

Durable OpenAI Agents (#574) #70

Durable OpenAI Agents (#574)

Durable OpenAI Agents (#574) #70

name: Sync submodule pipeline

Check failure on line 1 in .github/workflows/submodule-sync.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/submodule-sync.yml

Invalid workflow file

(Line: 14, Col: 13): The identifier 'Go to submodule' is invalid. IDs may only contain alphanumeric characters, '_', and '-'. IDs must start with a letter or '_' and must be less than 100 characters.
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 }}"