From ac59a6682ee26be2620ff14cde63443adf0b9814 Mon Sep 17 00:00:00 2001 From: Mobsuccess Bot Date: Thu, 14 Nov 2024 10:51:53 +0000 Subject: [PATCH] chore(gha): add linear-merge-master.yml GitHub workflow --- .github/workflows/linear-merge-master.yml | 25 +++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/linear-merge-master.yml diff --git a/.github/workflows/linear-merge-master.yml b/.github/workflows/linear-merge-master.yml new file mode 100644 index 000000000..d6bdcee0f --- /dev/null +++ b/.github/workflows/linear-merge-master.yml @@ -0,0 +1,25 @@ +# DO NOT EDIT: BEGIN +# This snippet has been inserted automatically by mobsuccessbot, do not edit! +# If changes are needed, update the action linear-merge-master in +# https://github.com/mobsuccess-devops/github-mobsuccess-policy +name: Linear merge on master + +on: + push: + branches: + - master + +jobs: + LinearMaster: + runs-on: ubuntu-latest + timeout-minutes: 3 + concurrency: + group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} + cancel-in-progress: true + steps: + - uses: mobsuccess-devops/github-actions-linear@master + with: + action: update-linear-issue-state-after-merge-on-master + linearApiKey: ${{ secrets.LINEAR_API_KEY }} + githubToken: ${{ secrets.GITHUB_TOKEN }} +# DO NOT EDIT: END