From 7b84e9af724de33e496d991f9489b19ed2aecf84 Mon Sep 17 00:00:00 2001 From: Mobsuccess Bot Date: Tue, 7 Nov 2023 15:17:03 +0000 Subject: [PATCH] Add linear.yml GitHub workflow --- .github/workflows/linear.yml | 40 ++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 .github/workflows/linear.yml diff --git a/.github/workflows/linear.yml b/.github/workflows/linear.yml new file mode 100644 index 0000000..c76db0e --- /dev/null +++ b/.github/workflows/linear.yml @@ -0,0 +1,40 @@ +# DO NOT EDIT: BEGIN +# This snippet has been inserted automatically by mobsuccessbot, do not edit! +# If changes are needed, update the action linear in +# https://github.com/mobsuccess-devops/github-mobsuccess-policy +name: Linear + +on: + merge_group: + types: + - checks_requested + + pull_request: + types: + - assigned + - unassigned + - review_requested + - review_request_removed + - opened + - synchronize + - closed + - edited + - converted_to_draft + - ready_for_review + + pull_request_review: + types: + - submitted + - edited + - dismissed + +jobs: + Linear: + runs-on: ubuntu-latest + timeout-minutes: 3 + steps: + - uses: mobsuccess-devops/github-actions-linear@master + with: + action: check-linear-state + linearApiKey: ${{ secrets.LINEAR_API_KEY }} + githubToken: ${{ secrets.GITHUB_TOKEN }}# DO NOT EDIT: END