Adding linear ticket requirement to PRs #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |