Skip to content
Merged
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
24 changes: 24 additions & 0 deletions .github/workflows/sync-prs-to-linear.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Sync Open PRs to Linear

on:
schedule:
- cron: '0 10 * * *'
workflow_dispatch:

permissions:
contents: none

jobs:
sync:
runs-on: ubuntu-latest
timeout-minutes: 15
permissions:
pull-requests: write
issues: write

steps:
- uses: resend/public-shared-workflows/.github/actions/sync_prs_to_linear@6adbbae7541681ead204faab5d4e5ea9bebca4da
with:
linear-api-key: ${{ secrets.LINEAR_API_KEY }}
linear-team-id: ${{ secrets.LINEAR_TEAM_ID }}
github-token: ${{ github.token }}