From d065e18c8edbe5417fb5ff6b1da2a3984d3401ad Mon Sep 17 00:00:00 2001 From: John Guibas Date: Thu, 29 Aug 2024 15:39:10 -0700 Subject: [PATCH] feat: add pr lints --- .github/workflows/pr_lint.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/pr_lint.yml diff --git a/.github/workflows/pr_lint.yml b/.github/workflows/pr_lint.yml new file mode 100644 index 00000000..72857c67 --- /dev/null +++ b/.github/workflows/pr_lint.yml @@ -0,0 +1,19 @@ +name: PR Lint + +on: + pull_request_target: + types: + - opened + - edited + +permissions: + pull-requests: read + +jobs: + main: + name: Title + runs-on: warp-ubuntu-latest-arm64-4x + steps: + - uses: amannn/action-semantic-pull-request@v5 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}