From deacfedef25c397eb6e6e9572a9b66f5f7b08afa Mon Sep 17 00:00:00 2001 From: Ben Warzeski Date: Mon, 7 Aug 2023 15:11:29 +0000 Subject: [PATCH] fix: remove tsconfig for commitlint job --- .github/workflows/commitlint.yml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/.github/workflows/commitlint.yml b/.github/workflows/commitlint.yml index fec11d6c2..36e15a54c 100644 --- a/.github/workflows/commitlint.yml +++ b/.github/workflows/commitlint.yml @@ -7,4 +7,14 @@ on: jobs: commitlint: - uses: openedx/.github/.github/workflows/commitlint.yml@master + runs-on: ubuntu-20.04 + steps: + - name: Check out repository + uses: actions/checkout@v3 + with: + fetch-depth: 0 + - name: remove tsconfig.json # see issue https://github.com/conventional-changelog/commitlint/issues/3256 + run: | + rm tsconfig.json + - name: Check commits + uses: wagoid/commitlint-github-action@v5