From 87d710116cdebb4bc80e3039246a8f88df241108 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:48:42 -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 00000000000000..e551056d1318dd --- /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