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

ci: Cleanup name of CSpell Update PR #818

Merged
merged 2 commits into from Jul 8, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
13 changes: 0 additions & 13 deletions .github/workflows/latest.yml

This file was deleted.

4 changes: 2 additions & 2 deletions .github/workflows/update-cspell.yml
Expand Up @@ -63,10 +63,10 @@ jobs:
if: env.git_status == 'dirty'
uses: peter-evans/create-pull-request@v4
with:
commit-message: "fix: Workflow Bot -- Update CSpell (${{ env.CSPELL_VERSION }})"
commit-message: "fix: Update CSpell to (${{ env.CSPELL_VERSION }})"
branch: ${{ env.NEW_BRANCH }}
base: ${{ env.REF_BRANCH }}
title: "fix: Workflow Bot -- Update CSpell (${{ env.CSPELL_VERSION }}) (${{ env.REF_BRANCH }})"
title: "fix: Update CSpell to (${{ env.CSPELL_VERSION }}) (${{ env.REF_BRANCH }})"
token: ${{ steps.generate-token.outputs.token }}
body: ${{ env.git_body }}
delete-branch: true
5 changes: 3 additions & 2 deletions .github/workflows/update-dependencies.yml
Expand Up @@ -35,6 +35,7 @@ jobs:
run: yarn clean-build
- name: Has changes
run: |
git --no-pager diff --compact-summary --exit-code action && echo "PR_TYPE=ci" >> $GITHUB_ENV || echo "PR_TYPE=fix" >> $GITHUB_ENV
git --no-pager diff --compact-summary --exit-code && echo "git_status=clean" >> $GITHUB_ENV || echo "git_status=dirty" >> $GITHUB_ENV
git --no-pager diff --compact-summary
- name: Gen Body
Expand All @@ -54,10 +55,10 @@ jobs:
if: env.git_status == 'dirty'
uses: peter-evans/create-pull-request@v4
with:
commit-message: "ci: Workflow Bot -- Update ALL Dependencies"
commit-message: "${{ env.PR_TYPE }}: Workflow Bot -- Update ALL Dependencies"
branch: ${{ env.NEW_BRANCH }}
base: ${{ env.REF_BRANCH }}
title: "ci: Workflow Bot -- Update ALL Dependencies (${{ env.REF_BRANCH }})"
title: "${{ env.PR_TYPE }}: Workflow Bot -- Update ALL Dependencies (${{ env.REF_BRANCH }})"
token: ${{ steps.generate-token.outputs.token }}
body: ${{ env.git_body }}
delete-branch: true