Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add ms-testers.yml GitHub workflow #75

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
34 changes: 34 additions & 0 deletions .github/workflows/ms-testers.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# DO NOT EDIT: BEGIN
# This snippet has been inserted automatically by mobsuccessbot, do not edit!
# If changes are needed, update the action ms-testers in
# https://github.com/mobsuccess-devops/github-mobsuccess-policy
name: Linear ms-testers

on:
merge_group:
types:
- checks_requested

pull_request:
types:
- assigned
- unassigned
- opened
- reopened
- synchronize
- edited

jobs:
LinearMsTesters:
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: propagate-ms-testers-assignee-to-linear
linearApiKey: ${{ secrets.LINEAR_API_KEY }}
githubToken: ${{ secrets.GITHUB_TOKEN }}
# DO NOT EDIT: END