From 9fbcf65265db43d29443462397e017573d17736c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=B4me?= <124148386+cathales@users.noreply.github.com> Date: Thu, 30 Nov 2023 17:37:24 +0100 Subject: [PATCH] Create verible.yml --- .github/workflows/verible.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/verible.yml diff --git a/.github/workflows/verible.yml b/.github/workflows/verible.yml new file mode 100644 index 0000000000..6512b5181c --- /dev/null +++ b/.github/workflows/verible.yml @@ -0,0 +1,19 @@ +name: Verible +on: + pull_request_target: + +jobs: + format: + runs-on: ubuntu-latest + permissions: + checks: write + contents: read + pull-requests: write + steps: + - uses: actions/checkout@v3 + with: + ref: ${{ github.event.pull_request.head.sha }} + - uses: chipsalliance/verible-formatter-action@main + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + files: 'core/**/*.{v,sv}'