From a797192e187c3bf84749ded4012d264da52556a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maik=20M=C3=BCller?= <15815012+aatmmr@users.noreply.github.com> Date: Wed, 16 Aug 2023 01:42:04 +0200 Subject: [PATCH] docs(readme): changing DEFAULT_BRANCH to main (#4563) --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 9e8362b9..e2a723fb 100644 --- a/README.md +++ b/README.md @@ -144,7 +144,7 @@ name: Lint Code Base on: push: branches-ignore: [master, main] - # Remove the line above to run when pushing to master + # Remove the line above to run when pushing to master or main pull_request: branches: [master, main] @@ -187,7 +187,7 @@ jobs: uses: super-linter/super-linter@v5 env: VALIDATE_ALL_CODEBASE: false - DEFAULT_BRANCH: master + DEFAULT_BRANCH: main GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} ``` @@ -232,7 +232,7 @@ Example usage: uses: super-linter/super-linter@v5 env: VALIDATE_ALL_CODEBASE: false - DEFAULT_BRANCH: master + DEFAULT_BRANCH: main GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} ``` @@ -258,7 +258,7 @@ Example usage: uses: super-linter/super-linter/slim@v5 env: VALIDATE_ALL_CODEBASE: false - DEFAULT_BRANCH: master + DEFAULT_BRANCH: main GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} ``` @@ -456,7 +456,7 @@ name: Lint Code Base on: push: branches-ignore: [master, main] - # Remove the line above to run when pushing to master + # Remove the line above to run when pushing to master or main pull_request: branches: [master, main] @@ -490,7 +490,7 @@ jobs: uses: super-linter/super-linter@v5 env: VALIDATE_ALL_CODEBASE: false - DEFAULT_BRANCH: master + DEFAULT_BRANCH: main GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} SSH_KEY: ${{ secrets.SSH_PRIVATE_KEY }} ```