From a6d60d8fa87feaec0548e0d8f4ba97f1c0b8fa9c Mon Sep 17 00:00:00 2001 From: Philip Jake Date: Tue, 17 Aug 2021 22:00:53 +0200 Subject: [PATCH] Editorial: linked the example `linter.yml` file (#1872) --- README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index dbf2142a..7d2ad848 100644 --- a/README.md +++ b/README.md @@ -120,17 +120,17 @@ To use this **GitHub** Action you will need to complete the following: In your repository you should have a `.github/workflows` folder with **GitHub** Action similar to below: - `.github/workflows/linter.yml` - - Example file can be found at `TEMPLATES/linter.yml` + - Example file can be found at [`TEMPLATES/linter.yml`](/TEMPLATES/linter.yml) This file should have the following code: ```yml --- -########################### -########################### -## Linter GitHub Actions ## -########################### -########################### +################################# +################################# +## Super Linter GitHub Actions ## +################################# +################################# name: Lint Code Base # @@ -143,10 +143,10 @@ name: Lint Code Base ############################# on: push: - branches-ignore: [master] + branches-ignore: [master, main] # Remove the line above to run when pushing to master pull_request: - branches: [master] + branches: [master, main] ############### # Set the Job #