Fix template and while we're at it, typos (#39956)

This commit is contained in:
Lucas Manuel Rodriguez 2026-02-17 18:45:59 -03:00 committed by GitHub
parent abaeeec6b8
commit 89425cb441
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 8 additions and 8 deletions

View file

@ -79,7 +79,7 @@ It is [planned and ready](https://fleetdm.com/handbook/company/development-group
<!-- Any additional testing notes relevant to this story or tools required for testing. -->
### Confirmation
<!-- The engineer responsible for implementing this user story completes the test plan before moving to the "Ready for QA" column. -->
<!-- The engineer responsible for implementing this user story completes the test plan before moving to the "Awaiting QA" column. -->
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.

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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