Giter Club home page Giter Club logo

action-yamllint's Introduction

๐Ÿš€ Frenck's Github Action: yamllint

GitHub Release Project Stage Project Maintenance License

Sponsor Frenck via GitHub Sponsors

๐Ÿš€ Frenck's GitHub Action for yamllint. A linter for YAML files.

About

A very simple and easy to use GitHub Action for linting YAML files using yamllint.

It annotates found issues, supports strict mode, can also fail on warnings if wanted, and can be fully tuned using a yamllint configuration file.

Usage

name: Lint
on: [push, pull_request]
jobs:
  yamllint:
    name: yamllint
    runs-on: ubuntu-latest
    steps:
      - name: โคต๏ธ Check out code from GitHub
        uses: actions/checkout@v3
      - name: ๐Ÿš€ Run yamllint
        uses: frenck/action-yamllint@v1

Arguments

Input Description Usage
config Path to custom configuration file (non-default YAMLLint path). Optional
path Files (or directory) to check. Optional
strict Strict mode, causes linter warnings to be handled as errors. Optional
warnings Allows for disabling warnings from (annotation) output. Optional

Examples

The following examples demonstrate the usage of the GitHub Action with the above arguments.

Using a custom yamllint configuration file

You can customize the rules of yamllint by using a yamllint configuration file. The action will automatically pick up configuration files on the default configuration file location of yamllint. However, this option allows you to you specify a custom configuration file location.

- name: ๐Ÿš€ Run yamllint
  uses: frenck/action-yamllint@v1
  with:
    config: "./custom/.yamllint"

Limiting run to a specific folder or files

The yamllint run/action can be limited to a specific folder or files. This example runs yamllint only on the YAML files located in the src folder.

- name: ๐Ÿš€ Run yamllint
  uses: frenck/action-yamllint@v1
  with:
    config: "src/"

Running yamllint in strict mode

Running yamllint in strict mode, raising warnings as error. This will cause the action to raise an failure, even when only warnings are found.

- name: ๐Ÿš€ Run yamllint
  uses: frenck/action-yamllint@v1
  with:
    strict: true

Prevent yamllint warning being annotated

By default, the GitHub Action will annotate found issues, including warnings. However, warnings are not errors and one could choose disabling the annotation of warnings using the warnings argument.

- name: ๐Ÿš€ Run yamllint
  uses: frenck/action-yamllint@v1
  with:
    warnings: false

Alternative

The funny part is, you don't need an GitHub Action specifically for yamllint. yamllint is by default available on the GitHub's Action runners.

So you can do this alternatively:

name: Lint
on: [push, pull_request]
jobs:
  build:
    name: yamllint
    runs-on: ubuntu-latest
    steps:
      - name: โคต๏ธ Check out code from GitHub
        uses: actions/checkout@v3
      - name: ๐Ÿš€ Run yamllint
        run: |
          yamllint .

And... The above example, is faster, as it doesn't have a startup time, making it around 5-10 seconds faster.

So, why this action?!

The action is version controlled and can be updated independently from GitHub's runners. It prevents surprises, and using dependabot, you can actually know when an upgrade happens.

Which version runs on the GitHub runner? And tomorrow?

Nevertheless, it is good to know the alternatives ๐Ÿ˜‰

Real-world examples

The following repositories are using this GitHub Action, and thus provide you with some real-world uses of this GitHub Action.

Are you using this GitHub Action? Feel free to open up a PR to add your configuration to this list ๐Ÿ˜

Versions & Updating

You can specify which version of this GitHub Action your workflow should use. And even allowing for using the latest major or minor version.

For example; this will use release v1.1.1 of a GitHub Action:

- name: ๐Ÿš€ Run yamllint
  uses: frenck/[email protected]

While the following example, will use the v1.1.x minor release, for example if v1.1.2 is the latest releases (starting with v1.1), this will run v1.1.2:

- name: ๐Ÿš€ Run yamllint
  uses: frenck/[email protected]

As in the examples throughout the documentation, the following example is locked on major version, meaning any v1.x.x latest version will be used, as long as it is version 1.

- name: ๐Ÿš€ Run yamllint
  uses: frenck/action-yamllint@v1

Automatically update using Dependabot

The advantage of locking against a more specific version, is that it prevents surprises if an issue or breaking changes were introduced in a newer release.

The disadvantage of being more specific, is that it requires you to keep things up to date. Fortunately, GitHub has a tool for that, called: Dependabot.

Dependabot can automatically open a pull request on your repository to update this Action for you. You can instantly see if the new version works (as the pull request shows the success or failure status) and you can decide to merge it in by hitting the merge button. Quick, easy and always up2date.

To enable Dependabot, create a file called .github/dependabot.yaml:

version: 2
updates:
  - package-ecosystem: "github-actions"
    directory: "/"
    schedule:
      interval: daily

Your all set! Dependabot will now check (and update) your GitHub actions every day. ๐Ÿคฉ

Changelog & Releases

This repository keeps a change log using GitHub's releases functionality.

Releases are based on Semantic Versioning, and use the format of MAJOR.MINOR.PATCH. In a nutshell, the version will be incremented based on the following:

  • MAJOR: Incompatible or major changes.
  • MINOR: Backwards-compatible new features and enhancements.
  • PATCH: Backwards-compatible bugfixes and package updates.

Contributing

This is an active open-source project. We are always open to people who want to use the code or contribute to it.

We've set up a separate document for our contribution guidelines.

Thank you for being involved! ๐Ÿ˜

Authors & contributors

The original setup of this repository is by Franck Nijhof.

For a full list of all authors and contributors, check the contributor's page.

License

MIT License

Copyright (c) 2021-2022 Franck Nijhof

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

action-yamllint's People

Contributors

dependabot[bot] avatar frenck avatar metbril avatar pinkywafer avatar renovate[bot] avatar sinhashubham95 avatar wrt54g avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

action-yamllint's Issues

Filenames not showing

Subject of the issue

The same situation as #10 but there are no filenames in a Summary too.
Please, help to solve problem: https://github.com/Limych/HomeAssistantConfiguration/actions/runs/769191693

Your environment

  • OS:
  • Packages:
  • Env:

Steps to reproduce

Tell us how to reproduce this issue. Please provide a working and simplified example.

๐ŸŽ‰ BONUS POINTS for creating a minimal reproduction and uploading it to GitHub. This will get you the fastest support. ๐ŸŽ‰

Expected behavior

What should happen?

Actual behavior

What happens instead?

Support --format parameter

The default yamllint supports the --format parameter, since you can call it from the command line.

This action does not allow to overwrite the default. The current setting is hardcoded as --format github.

Use case: Currently this doesn't show filenames and line numbers (I reported an issue), so I'd like to switch to --format standard for now.

Dependency Dashboard

This issue lists Renovate updates and detected dependencies. Read the Dependency Dashboard docs to learn more.

This repository currently has no open or pending branches.

Detected dependencies

dockerfile
src/Dockerfile
  • python 3.12-alpine
github-actions
.github/workflows/additional-tags.yaml
  • actions/checkout v4.1.5
  • vweevers/additional-tags-action v2.0.0
.github/workflows/labels.yaml
  • actions/checkout v4.1.5
  • micnncim/action-label-syncer v1.3.0
.github/workflows/lint.yaml
  • actions/checkout v4.1.5
  • creyD/prettier_action v4.3
.github/workflows/lock.yaml
  • dessant/lock-threads v5.0.1
.github/workflows/release-drafter.yaml
  • release-drafter/release-drafter v6.0.0
.github/workflows/stale.yaml
  • actions/stale v9.0.0
.github/workflows/test.yaml
  • actions/checkout v4.1.5
pip_requirements
src/requirements.txt
  • yamllint ==1.35.1

  • Check this box to trigger a request for Renovate to run again on this repository

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.