From 758ab611c18d8a297ca77fb9b2949b79491e026a Mon Sep 17 00:00:00 2001 From: Bryce Palmer Date: Wed, 23 Nov 2022 15:24:10 -0500 Subject: [PATCH] add yamllint job back as the lint job only runs golangci-lint Signed-off-by: Bryce Palmer --- .github/workflows/lint.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index b277b6bc068..95a74972df2 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -49,4 +49,11 @@ jobs: title: 🐛 Lint failed for ${{ github.sha }} token: ${{ secrets.GITHUB_TOKEN }} labels: kind/bug - body: https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }} \ No newline at end of file + body: https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }} + + yamllint: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Run yamllint make target + run: make yamllint \ No newline at end of file