From 52574b7380a4f469834fa5e3bd3d517947b22fe1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CMark?= <“74402146+TechnoFinch@users.noreply.github.com”> Date: Thu, 17 Oct 2024 13:34:10 -0700 Subject: [PATCH] Adding linear ticket requirements to the repo --- .github/workflows/linear_pr_checker.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/linear_pr_checker.yml diff --git a/.github/workflows/linear_pr_checker.yml b/.github/workflows/linear_pr_checker.yml new file mode 100644 index 00000000000..e551056d131 --- /dev/null +++ b/.github/workflows/linear_pr_checker.yml @@ -0,0 +1,20 @@ +name: Linear PR Checker +# If the PR Checker is not functioning properly, adding SKIP_LINEAR_CHECK +# to the body will skip the check. Only use this when you are certain linear +# tickets are properly attached to the PR. + +on: + pull_request: + types: [opened, reopened, edited, synchronize] + branches: + - main + +defaults: + run: + shell: bash + working-directory: ./pr_checker + +jobs: + linear_pr_checker: + uses: togethercomputer/tools/.github/workflows/pr_checker.yml@main + secrets: inherit