From 5e29767035f76b47b3e16adcf8af99b295ef89b9 Mon Sep 17 00:00:00 2001 From: Luke Watts Date: Mon, 8 Jan 2024 15:02:43 +0100 Subject: [PATCH] chore: prefix PR title to match conventional commit --- .github/workflows/sync-cli-help-to-user-docs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sync-cli-help-to-user-docs.yml b/.github/workflows/sync-cli-help-to-user-docs.yml index 51514b3686..b0d6819577 100644 --- a/.github/workflows/sync-cli-help-to-user-docs.yml +++ b/.github/workflows/sync-cli-help-to-user-docs.yml @@ -33,7 +33,7 @@ jobs: git push --force --set-upstream origin docs/automatic-gitbook-update if [[ ! $(gh pr view docs/automatic-gitbook-update 2>&1 | grep -q "no open pull requests";) ]]; then echo "Creating PR" - gh pr create --title="Synchronizing CLI help from user-docs" --body="Automatic PR controlled by GitHub Action" --head docs/automatic-gitbook-update + gh pr create --title="docs: Synchronizing CLI help from user-docs" --body="Automatic PR controlled by GitHub Action" --head docs/automatic-gitbook-update fi echo "PR exists, pushed changes to it." else