From c5f8e789b9f979d79f86d7a23c3ca2e9ef3526a3 Mon Sep 17 00:00:00 2001 From: Carlos Santiago <5726971+csantiago132@users.noreply.github.com> Date: Thu, 3 Oct 2024 20:59:21 -0500 Subject: [PATCH] fix(ci): run Lint Workflow --- .github/workflows/ci.lint.yml | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.lint.yml b/.github/workflows/ci.lint.yml index 2e2fce5..6efba92 100644 --- a/.github/workflows/ci.lint.yml +++ b/.github/workflows/ci.lint.yml @@ -1,7 +1,6 @@ name: Code Quality on: - workflow_call: pull_request: push: branches: @@ -14,7 +13,16 @@ permissions: id-token: write jobs: - ci-lint: - uses: kurocado-studio/styleguide/.github/workflows/lint.yml@main - secrets: - GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} + lint: + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v1 + with: + token: ${{ secrets.GITHUB_TOKEN }} + fetch-depth: 0 + + - name: Run Lint Workflow + uses: kurocado-studio/styleguide/.github/workflows/lint.yml@main + secrets: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}