Skip to content

Commit

Permalink
Merge pull request #494 from szepeviktor/typos
Browse files Browse the repository at this point in the history
Fix typos
  • Loading branch information
rhysd authored Dec 30, 2024
2 parents 1b58c1f + a65c160 commit ac7fd16
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -796,7 +796,7 @@
- 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))
```yaml
jobs:
ReuseableMatrixJobForDeployment:
ReusableMatrixJobForDeployment:
strategy:
matrix:
target: [dev, stage, prod]
Expand Down Expand Up @@ -929,7 +929,7 @@
```
- 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))
- Allow `description:` is missing in `secrets:` of reusable workflow call definition since it is optional. ([#174](https://github.com/rhysd/actionlint/issues/174))
- 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))
- 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))
```yaml
on:
workflow_dispatch:
Expand Down
2 changes: 1 addition & 1 deletion expr_sema_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1742,7 +1742,7 @@ func TestParseFormatSpecifiers(t *testing.T) {
want: []int{0},
},
{
what: "mutliple specifiers",
what: "multiple specifiers",
in: "{0} {1}{2}x{3}}{4}!",
want: []int{0, 1, 2, 3, 4},
},
Expand Down
2 changes: 1 addition & 1 deletion testdata/projects/paths_config/workflows/foo.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ env:

jobs:
test:
# This erro will be reported
# This error will be reported
runs-on: unknown
steps:
- run: echo
4 changes: 2 additions & 2 deletions testdata/projects/paths_config/workflows/nested/piyo.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# This error will be ignored by workflows/**/*.yaml config
on: unknown

# This erro will be reported
# This error will be reported
env:
FOO: ${{ env.FOO }}

jobs:
test:
# This erro will be reported
# This error will be reported
runs-on: unknown
steps:
- run: echo

0 comments on commit ac7fd16

Please sign in to comment.