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

chore(INF-1419): Add Linear Compliance Action #114

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

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions .github/workflows/check-linear-compliance.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Find Linear Issue in Pull Request

on:
workflow_dispatch:
pull_request:
types: [opened, reopened, edited]

jobs:
check-linear-issue-on-pull-request:
runs-on: small
steps:
- name: Checkout Repo
uses: actions/checkout@v4
- name: Checkout Shared Github Actions Repo
uses: actions/checkout@v4
with:
repository: validationcloud/shared-github-actions
ref: main
path: shared-github-actions
token: ${{ secrets.AUTOMATION_VC_PAT }}

- name: Find the Linear Issue
uses: ./shared-github-actions/check-linear-compliance
with:
token: ${{ secrets.AUTOMATION_VC_PAT }}
linear-api-key: ${{ secrets.LINEAR_API_KEY }}