From 89425cb441a0621dc33092ae4a168b72688f5da2 Mon Sep 17 00:00:00 2001 From: Lucas Manuel Rodriguez Date: Tue, 17 Feb 2026 18:45:59 -0300 Subject: [PATCH] Fix template and while we're at it, typos (#39956) --- .github/ISSUE_TEMPLATE/story.md | 2 +- .github/workflows/check-automated-doc.yml | 6 +++--- .github/workflows/deploy-fleet-website.yml | 2 +- .github/workflows/loadtest-infra.yml | 2 +- .github/workflows/test-db-changes.yml | 2 +- .github/workflows/test-website.yml | 2 +- 6 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/story.md b/.github/ISSUE_TEMPLATE/story.md index a6dc6fe158..abbe173f21 100644 --- a/.github/ISSUE_TEMPLATE/story.md +++ b/.github/ISSUE_TEMPLATE/story.md @@ -79,7 +79,7 @@ It is [planned and ready](https://fleetdm.com/handbook/company/development-group ### Confirmation - + 1. [ ] Engineer: Added comment to user story confirming successful completion of test plan. 2. [ ] QA: Added comment to user story confirming successful completion of test plan. diff --git a/.github/workflows/check-automated-doc.yml b/.github/workflows/check-automated-doc.yml index fc64624d59..c80382cf80 100644 --- a/.github/workflows/check-automated-doc.yml +++ b/.github/workflows/check-automated-doc.yml @@ -48,7 +48,7 @@ jobs: run: | make generate-doc if [[ $(git diff) ]]; then - echo "❌ fail: uncommited changes" + echo "❌ fail: uncommitted changes" echo "please run 'make generate-doc' and commit the changes" git --no-pager diff exit 1 @@ -60,7 +60,7 @@ jobs: npm install ./node_modules/sails/bin/sails.js run generate-merged-schema if [[ $(git diff) ]]; then - echo "❌ fail: uncommited changes" + echo "❌ fail: uncommitted changes" echo "please run 'cd website && npm install && ./node_modules/sails/bin/sails.js run generate-merged-schema' and commit the changes" git --no-pager diff exit 1 @@ -70,7 +70,7 @@ jobs: run: | make vex-report if [[ $(git diff) ]]; then - echo "❌ fail: uncommited changes" + echo "❌ fail: uncommitted changes" echo "please run 'make vex-report' and commit the changes" git --no-pager diff exit 1 diff --git a/.github/workflows/deploy-fleet-website.yml b/.github/workflows/deploy-fleet-website.yml index ab13b5f54e..cbac5cefe6 100644 --- a/.github/workflows/deploy-fleet-website.yml +++ b/.github/workflows/deploy-fleet-website.yml @@ -67,7 +67,7 @@ jobs: with: go-version-file: 'go.mod' - # 2025-08-07: The Storybook steps in website workflows have been temporarily disabled until a compatability issue with the @storybook/test-runner has been resolved. See https://github.com/fleetdm/fleet/issues/31720 for more information. + # 2025-08-07: The Storybook steps in website workflows have been temporarily disabled until a compatibility issue with the @storybook/test-runner has been resolved. See https://github.com/fleetdm/fleet/issues/31720 for more information. # # Download top-level dependencies and build Storybook in the website's assets/ folder # - run: npm install --legacy-peer-deps && npm run build-storybook -- -o ./website/assets/storybook --loglevel verbose diff --git a/.github/workflows/loadtest-infra.yml b/.github/workflows/loadtest-infra.yml index 964e855c45..4bb01ecf0c 100644 --- a/.github/workflows/loadtest-infra.yml +++ b/.github/workflows/loadtest-infra.yml @@ -18,7 +18,7 @@ on: default: "5" required: true fleet_task_memory: - description: "The amount of memoery allocated in Megabytes for the ECS tasks" + description: "The amount of memory allocated in Megabytes for the ECS tasks" type: string default: "4096" required: true diff --git a/.github/workflows/test-db-changes.yml b/.github/workflows/test-db-changes.yml index cf11517bf0..384ba09876 100644 --- a/.github/workflows/test-db-changes.yml +++ b/.github/workflows/test-db-changes.yml @@ -93,7 +93,7 @@ jobs: run: | make test-schema if [[ $(git diff-files --patch server/datastore/mysql/schema.sql) ]]; then - echo "❌ fail: uncommited changes in schema.sql" + echo "❌ fail: uncommitted changes in schema.sql" echo "please run 'make test-schema' and commit the changes" exit 1 fi diff --git a/.github/workflows/test-website.yml b/.github/workflows/test-website.yml index 129e03e59a..25bf943a30 100644 --- a/.github/workflows/test-website.yml +++ b/.github/workflows/test-website.yml @@ -46,7 +46,7 @@ jobs: with: node-version: ${{ matrix.node-version }} - # 2025-08-07: The Storybook steps in website workflows have been temporarily disabled until a compatability issue with the @storybook/test-runner has been resolved. See https://github.com/fleetdm/fleet/issues/31720 for more information. + # 2025-08-07: The Storybook steps in website workflows have been temporarily disabled until a compatibility issue with the @storybook/test-runner has been resolved. See https://github.com/fleetdm/fleet/issues/31720 for more information. # # Download top-level dependencies and build Storybook in the website's assets/ folder. # - run: npm install --legacy-peer-deps && npm run build-storybook -- -o ./website/assets/storybook --loglevel verbose