Skip to content

Commit

Permalink
Make yamllint happy (#16)
Browse files Browse the repository at this point in the history
## πŸ’Œ Description

Add a .yamllint file to disable the line-length rule, and add the yaml
[document
start](https://yamllint.readthedocs.io/en/stable/rules.html#module-yamllint.rules.document_start)
to actions.yaml.

Any developer that uses editors with syntax checking (specifically with
yamllint) happier.

## πŸ”— Related issue

<!-- If your PR refers to a related issue, link it here. -->

## πŸ—οΈ Type of change

<!-- Mark with an `x` all the checkboxes that apply (like `[x]`) -->

- [ ] πŸ“š Examples / docs / tutorials
- [ ] πŸ› Bug fix (non-breaking change which fixes an issue)
- [x] πŸ₯‚ Improvement (non-breaking change which improves an existing
feature)
- [ ] πŸš€ New feature (non-breaking change which adds functionality)
- [ ] πŸ’₯ Breaking change (fix or feature that would cause existing
functionality to change)
- [ ] 🚨 Security fix
- [ ] ⬆️ Dependencies update

## βœ… Checklist

<!-- Mark with an `x` all the checkboxes that apply (like `[x]`) -->

- [x] I've read the [`Code of
Conduct`](https://github.com/raven-actions/actionlint/blob/main/.github/CODE_OF_CONDUCT.md)>
document.
- [x] I've read the
[`Contributing`](https://github.com/raven-actions/actionlint/blob/main/.github/CONTRIBUTING.md)
guide.

Signed-off-by: Bryan Hundven <[email protected]>
  • Loading branch information
bhundven authored Nov 13, 2023
1 parent 6f87bc2 commit f4f25e4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .yamllint
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
rules:
line-length:
disable: true
1 change: 1 addition & 0 deletions action.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
---
# https://docs.github.com/en/actions/creating-actions/metadata-syntax-for-github-actions
name: actionlint
description: βœ… Run actionlint for validating your GitHub Actions workflow files.
Expand Down

0 comments on commit f4f25e4

Please sign in to comment.