mirror of
https://github.com/fleetdm/fleet
synced 2026-04-21 13:37:30 +00:00
Fix template and while we're at it, typos (#39956)
This commit is contained in:
parent
abaeeec6b8
commit
89425cb441
6 changed files with 8 additions and 8 deletions
2
.github/ISSUE_TEMPLATE/story.md
vendored
2
.github/ISSUE_TEMPLATE/story.md
vendored
|
|
@ -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.
|
||||
|
|
|
|||
6
.github/workflows/check-automated-doc.yml
vendored
6
.github/workflows/check-automated-doc.yml
vendored
|
|
@ -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
|
||||
|
|
|
|||
2
.github/workflows/deploy-fleet-website.yml
vendored
2
.github/workflows/deploy-fleet-website.yml
vendored
|
|
@ -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
|
||||
|
||||
|
|
|
|||
2
.github/workflows/loadtest-infra.yml
vendored
2
.github/workflows/loadtest-infra.yml
vendored
|
|
@ -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
|
||||
|
|
|
|||
2
.github/workflows/test-db-changes.yml
vendored
2
.github/workflows/test-db-changes.yml
vendored
|
|
@ -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
|
||||
|
|
|
|||
2
.github/workflows/test-website.yml
vendored
2
.github/workflows/test-website.yml
vendored
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue