From dbc51c92af75f962c38abcf3f932df836d2fa4d9 Mon Sep 17 00:00:00 2001 From: Nanda H Krishna Date: Wed, 5 May 2021 00:12:57 +0530 Subject: [PATCH] workflows: rename `update-manpage` to `update-man-completions` --- .../{update-manpage.yml => update-man-completions.yml} | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) rename .github/workflows/{update-manpage.yml => update-man-completions.yml} (91%) diff --git a/.github/workflows/update-manpage.yml b/.github/workflows/update-man-completions.yml similarity index 91% rename from .github/workflows/update-manpage.yml rename to .github/workflows/update-man-completions.yml index b57ae9306d..e9458a2e0e 100644 --- a/.github/workflows/update-manpage.yml +++ b/.github/workflows/update-man-completions.yml @@ -3,7 +3,7 @@ name: Update maintainers, manpage and completions on: push: paths: - - .github/workflows/update-manpage.yml + - .github/workflows/update-man-completions.yml - README.md - Library/Homebrew/cmd/** - Library/Homebrew/dev-cmd/** @@ -41,7 +41,7 @@ jobs: run: | git fetch origin - BRANCH=update-manpage + BRANCH=update-man-completions echo "::set-output name=branch::${BRANCH}" if git ls-remote --exit-code --heads origin "$BRANCH"; then @@ -62,7 +62,7 @@ jobs: "$GITHUB_WORKSPACE/manpages/brew.1" \ "$GITHUB_WORKSPACE/completions" git commit -m "Update maintainers, manpage and completions." \ - -m "Autogenerated by the [update-manpage](https://github.com/Homebrew/brew/blob/HEAD/.github/workflows/update-manpage.yml) workflow." + -m "Autogenerated by the [update-man-completions](https://github.com/Homebrew/brew/blob/HEAD/.github/workflows/update-man-completions.yml) workflow." echo "::set-output name=committed::true" if [ -n "$BRANCH_EXISTS" ]; then echo "::set-output name=pull_request::true"