diff --git a/.github/workflows/linear_pr_checker.yml b/.github/workflows/linear_pr_checker.yml new file mode 100644 index 00000000..a7c44abe --- /dev/null +++ b/.github/workflows/linear_pr_checker.yml @@ -0,0 +1,21 @@ +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