From c8c7d3975c8880cf809d310fa6f984e64f7eef35 Mon Sep 17 00:00:00 2001 From: Jariel Que Date: Thu, 7 Jul 2022 18:22:40 +0800 Subject: [PATCH 1/2] chore: add branch specifier --- docs/README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/README.md b/docs/README.md index b24dcda..b4f7708 100644 --- a/docs/README.md +++ b/docs/README.md @@ -10,8 +10,9 @@ ###### INFO: Gitccentify is undergoing a major overhaul and will be renamed to pint. Information on this readme may be out of date. +[pint](https://projects.fuwa.sh/pint/) is a browser extension that makes your github experience colorful, just the way you like it. -[pint](https://projects.fuwa.sh/pint/) is a browser extension that makes your github experience colorful, just the way you like it. +💭 Looking for the latest changes? Check the `pint-overhaul` branch!

@@ -48,4 +49,4 @@ Contributions are currently on hold as I overhaul this project. I'll be acceptin ###### This extension is licensed under the GPLv3 License. -###### This project is not affiliated, associated, authorized, endorsed by, or in any way officially connected with GitHub, Inc. and Git, or any of its subsidiaries or its affiliates. \ No newline at end of file +###### This project is not affiliated, associated, authorized, endorsed by, or in any way officially connected with GitHub, Inc. and Git, or any of its subsidiaries or its affiliates. From 739ea44ca65905820e72c8f6c5b64db712ca004d Mon Sep 17 00:00:00 2001 From: Jariel Que Date: Tue, 12 Jul 2022 11:18:05 +0800 Subject: [PATCH 2/2] workflow: add superlinter --- .github/workflows/super-linter.yml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .github/workflows/super-linter.yml diff --git a/.github/workflows/super-linter.yml b/.github/workflows/super-linter.yml new file mode 100644 index 0000000..ca69cec --- /dev/null +++ b/.github/workflows/super-linter.yml @@ -0,0 +1,29 @@ +# This workflow executes several linters on changed files based on languages used in your code base whenever +# you push a code or open a pull request. +# +# You can adjust the behavior by modifying this file. +# For more information, see: +# https://github.com/github/super-linter +name: Lint Code Base + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] +jobs: + run-lint: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v3 + with: + # Full git history is needed to get a proper list of changed files within `super-linter` + fetch-depth: 0 + + - name: Lint Code Base + uses: github/super-linter@v4 + env: + VALIDATE_ALL_CODEBASE: false + DEFAULT_BRANCH: "main" + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}