From 7afffa776f93d97058cbe0e2a6f5fe596e1deae9 Mon Sep 17 00:00:00 2001 From: Mihail Anton Date: Fri, 6 Oct 2023 12:07:44 +0300 Subject: [PATCH 1/2] chore: change title --- action.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/action.yml b/action.yml index 1e085da..f5c8747 100644 --- a/action.yml +++ b/action.yml @@ -1,6 +1,5 @@ -name: 'YAML Lint' +name: 'YAML Lint fork' description: 'Validate YAML syntax' -author: 'ibiqlik' inputs: file_or_dir: From 849a8f440ca6a13c882e59c9e1548c8d7dc40388 Mon Sep 17 00:00:00 2001 From: Mihail Anton Date: Fri, 6 Oct 2023 12:12:38 +0300 Subject: [PATCH 2/2] chore: update readme with new repo source --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 1f8dd87..5510fda 100644 --- a/README.md +++ b/README.md @@ -1,13 +1,13 @@ # GitHub YAMLlint -This action executes `yamllint` (https://github.com/adrienverge/yamllint) against files or folder +This action executes [yamllint](https://github.com/adrienverge/yamllint) against files or folder. Originally developed at [ibiqlik/action-yamllint](https://github.com/ibiqlik/action-yamllint). ## Usage Simple as: ```yaml -- uses: ibiqlik/action-yamllint@v3 +- uses: metabolicatlas/action-yamllint@v3 ``` ### Optional input parameters @@ -45,7 +45,7 @@ jobs: steps: - uses: actions/checkout@v3 - name: yaml-lint - uses: ibiqlik/action-yamllint@v3 + uses: metabolicatlas/action-yamllint@v3 with: file_or_dir: myfolder/*values*.yaml config_file: .yamllint.yml @@ -63,7 +63,7 @@ jobs: steps: - uses: actions/checkout@v3 - name: yaml-lint - uses: ibiqlik/action-yamllint@v3 + uses: metabolicatlas/action-yamllint@v3 ``` Config data examples: @@ -96,7 +96,7 @@ jobs: steps: - uses: actions/checkout@v3 - id: yaml-lint - uses: ibiqlik/action-yamllint@v3 + uses: metabolicatlas/action-yamllint@v3 - run: echo ${{ steps.yaml-lint.outputs.logfile }}