Skip to content

Commit a65c160

Browse files
committed
Fix typos
1 parent efd7eb5 commit a65c160

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

CHANGELOG.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -796,7 +796,7 @@
796796
- Allow workflow calls are available in matrix jobs. See [the official announcement](https://github.blog/changelog/2022-08-22-github-actions-improvements-to-reusable-workflows-2/) for more details. ([#197](https://github.com/rhysd/actionlint/issues/197))
797797
```yaml
798798
jobs:
799-
ReuseableMatrixJobForDeployment:
799+
ReusableMatrixJobForDeployment:
800800
strategy:
801801
matrix:
802802
target: [dev, stage, prod]
@@ -929,7 +929,7 @@
929929
```
930930
- Fix usage of local actions (`uses: ./path/to/action`) was not checked when multiple workflow files were passed to `actionlint` command. ([#173](https://github.com/rhysd/actionlint/issues/173))
931931
- Allow `description:` is missing in `secrets:` of reusable workflow call definition since it is optional. ([#174](https://github.com/rhysd/actionlint/issues/174))
932-
- Fix type of propery of `github.event.inputs` is string unlike `inputs` context. See [the document](https://github.com/rhysd/actionlint/blob/main/docs/checks.md#workflow-dispatch-event-validation) for more details. ([#181](https://github.com/rhysd/actionlint/issues/181))
932+
- Fix type of property of `github.event.inputs` is string unlike `inputs` context. See [the document](https://github.com/rhysd/actionlint/blob/main/docs/checks.md#workflow-dispatch-event-validation) for more details. ([#181](https://github.com/rhysd/actionlint/issues/181))
933933
```yaml
934934
on:
935935
workflow_dispatch:

expr_sema_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1742,7 +1742,7 @@ func TestParseFormatSpecifiers(t *testing.T) {
17421742
want: []int{0},
17431743
},
17441744
{
1745-
what: "mutliple specifiers",
1745+
what: "multiple specifiers",
17461746
in: "{0} {1}{2}x{3}}{4}!",
17471747
want: []int{0, 1, 2, 3, 4},
17481748
},

testdata/projects/paths_config/workflows/foo.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ env:
77

88
jobs:
99
test:
10-
# This erro will be reported
10+
# This error will be reported
1111
runs-on: unknown
1212
steps:
1313
- run: echo
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
# This error will be ignored by workflows/**/*.yaml config
22
on: unknown
33

4-
# This erro will be reported
4+
# This error will be reported
55
env:
66
FOO: ${{ env.FOO }}
77

88
jobs:
99
test:
10-
# This erro will be reported
10+
# This error will be reported
1111
runs-on: unknown
1212
steps:
1313
- run: echo

0 commit comments

Comments
 (0)