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 }}