Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix/sp 19891 #232

Open
wants to merge 18 commits into
base: develop
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/update-clients.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
if [[ ${{ github.event_name }} == 'workflow_dispatch' ]]; then
echo "fmt_title=${{ github.event.inputs.title }}" >> "$GITHUB_OUTPUT"
else
echo "fmt_title=${{ github.event.head_commit.message }}" >> "$GITHUB_OUTPUT"
echo "fmt_title=${GITHUB_SHA::8}" >> "$GITHUB_OUTPUT"
fi

update-js-client:
Expand Down Expand Up @@ -54,7 +54,7 @@ jobs:
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git add --all
git commit -m "${{ needs.title.outputs.title }}" -a
git commit -m "Commit: ${{ needs.title.outputs.title }}" -a
git push --set-upstream origin ${GITHUB_SHA::8}
gh pr create --fill --draft --base develop
env:
Expand Down Expand Up @@ -97,7 +97,7 @@ jobs:
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git add --all
git commit -m "${{ needs.title.outputs.title }}" -a
git commit -m "Commit: ${{ needs.title.outputs.title }}" -a
git push --set-upstream origin ${GITHUB_SHA::8}
gh pr create --fill --draft --base develop
env:
Expand Down Expand Up @@ -133,7 +133,7 @@ jobs:
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git add --all
git commit -m "${{ needs.title.outputs.title }}" -a
git commit -m "Commit: ${{ needs.title.outputs.title }}" -a
git push --set-upstream origin ${GITHUB_SHA::8}
gh pr create --fill --draft --base develop
env:
Expand Down Expand Up @@ -170,7 +170,7 @@ jobs:
git config --local user.name "GitHub Action"
git checkout src/Regula.DocumentReader.WebClient/Api/DefaultApi.cs src/Regula.DocumentReader.WebClient/Api/ProcessApi.cs
git add --all
git commit -m "${{ needs.title.outputs.title }}" -a
git commit -m "Commit: ${{ needs.title.outputs.title }}" -a
git push --set-upstream origin ${GITHUB_SHA::8}
gh pr create --fill --draft --base develop
env:
Expand Down
Loading