From cab9746c01531282e804737c1375d287527a3dea Mon Sep 17 00:00:00 2001 From: Dave Skender <8432125+DaveSkender@users.noreply.github.com> Date: Tue, 2 Jan 2024 20:37:20 -0500 Subject: [PATCH] rename environment --- .github/workflows/deploy-docs.yml | 4 ++-- .github/workflows/semantic-pr-linter.yml | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/deploy-docs.yml b/.github/workflows/deploy-docs.yml index 05ceb88fa..f6b1a19d1 100644 --- a/.github/workflows/deploy-docs.yml +++ b/.github/workflows/deploy-docs.yml @@ -3,7 +3,7 @@ name: Deploy website on: [workflow_dispatch] concurrency: - group: cloudflare-pages + group: docs-website env: JEKYLL_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest environment: - name: cloudflare-pages + name: docs-website steps: - name: Checkout source diff --git a/.github/workflows/semantic-pr-linter.yml b/.github/workflows/semantic-pr-linter.yml index c98c1bca8..a4113f57f 100644 --- a/.github/workflows/semantic-pr-linter.yml +++ b/.github/workflows/semantic-pr-linter.yml @@ -12,7 +12,7 @@ permissions: jobs: main: - name: Validate PR title + name: validate PR title runs-on: ubuntu-latest steps: - uses: amannn/action-semantic-pull-request@v5 @@ -52,12 +52,12 @@ jobs: It looks like your proposed **_Pull request title_** needs to be adjusted. - >🚩 **ERROR:** ${{ steps.lint_pr_title.outputs.error_message }} + >🚩 **Error** » ${{ steps.lint_pr_title.outputs.error_message }} #### Pull request title naming convention Our PR title name taxonomy is `type: Subject`, where **type** is typically - *feat*, *fix*, or *chore* and **subject** is a noun that starts with a capitalized letter. + *feat*, *fix*, or *chore*, and **subject** is a phrase (proper noun) that starts with a capitalized letter. The *chore* type usually has a subject that starts with an action verb like *Add* or *Update*. Examples: `feat: Admin portal login`, `fix: Divide by zero bug in SMA`, and `chore: Update user docs`. See the [Conventional Commits specification](https://www.conventionalcommits.org) for more information.