From 9acc3d3da9bcfb4869eacf7aca14b585d1dde32b Mon Sep 17 00:00:00 2001
From: IvanZosimov <ivanzosimov@github.com>
Date: Tue, 20 Dec 2022 16:34:43 +0100
Subject: [PATCH] Fix review points

---
 .github/workflows/{workflow.yml => basic-validation.yml} | 4 ++--
 .github/workflows/check-dist.yml                         | 2 +-
 .github/workflows/codeql-analysis.yml                    | 2 +-
 .github/workflows/licensed.yml                           | 2 +-
 package.json                                             | 2 +-
 5 files changed, 6 insertions(+), 6 deletions(-)
 rename .github/workflows/{workflow.yml => basic-validation.yml} (53%)

diff --git a/.github/workflows/workflow.yml b/.github/workflows/basic-validation.yml
similarity index 53%
rename from .github/workflows/workflow.yml
rename to .github/workflows/basic-validation.yml
index 46697e9..7ee82bf 100644
--- a/.github/workflows/workflow.yml
+++ b/.github/workflows/basic-validation.yml
@@ -1,4 +1,4 @@
-name: build-test
+name: Basic validation
 
 on:
   push:
@@ -11,6 +11,6 @@ on:
       - '**.md'
 
 jobs:
-  call-basic-validation: # The reusable workflow can be found here: https://github.com/actions/reusable-workflows/blob/main/.github/workflows/basic-validation.yml
+  call-basic-validation:
     name: Basic validation
     uses: actions/reusable-workflows/.github/workflows/basic-validation.yml@main
\ No newline at end of file
diff --git a/.github/workflows/check-dist.yml b/.github/workflows/check-dist.yml
index d51766a..1251c11 100644
--- a/.github/workflows/check-dist.yml
+++ b/.github/workflows/check-dist.yml
@@ -12,6 +12,6 @@ on:
   workflow_dispatch:
 
 jobs:
-  call-check-dist: # The reusable workflow can be found here: https://github.com/actions/reusable-workflows/blob/main/.github/workflows/check-dist.yml
+  call-check-dist:
     name: Check dist/
     uses: actions/reusable-workflows/.github/workflows/check-dist.yml@main
\ No newline at end of file
diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml
index fd4d859..f1f430a 100644
--- a/.github/workflows/codeql-analysis.yml
+++ b/.github/workflows/codeql-analysis.yml
@@ -9,6 +9,6 @@ on:
     - cron: '0 3 * * 0'
 
 jobs:
-  call-codeQL-analysis: # The reusable workflow can be found here: https://github.com/actions/reusable-workflows/blob/main/.github/workflows/codeql-analysis.yml
+  call-codeQL-analysis:
     name: CodeQL analysis 
     uses: actions/reusable-workflows/.github/workflows/codeql-analysis.yml@main
\ No newline at end of file
diff --git a/.github/workflows/licensed.yml b/.github/workflows/licensed.yml
index ba7cd05..88d3eae 100644
--- a/.github/workflows/licensed.yml
+++ b/.github/workflows/licensed.yml
@@ -9,6 +9,6 @@ on:
       - main
 
 jobs:
-  call-licensed: # The reusable workflow can be found here: https://github.com/actions/reusable-workflows/blob/main/.github/workflows/licensed.yml
+  call-licensed:
     name: Licensed
     uses: actions/reusable-workflows/.github/workflows/licensed.yml@main
\ No newline at end of file
diff --git a/package.json b/package.json
index 55f38b4..99bf0b2 100644
--- a/package.json
+++ b/package.json
@@ -8,7 +8,7 @@
     "build": "tsc && ncc build -o dist/setup src/setup-go.ts && ncc build -o dist/cache-save src/cache-save.ts",
     "format": "prettier --write **/*.ts",
     "format-check": "prettier --check **/*.ts",
-    "lint": "",
+    "lint": "echo \"Fake command that does nothing. It is used in reusable workflows\"",
     "test": "jest --coverage",
     "pre-checkin": "npm run format && npm run build && npm test"
   },