Skip to content

Commit 009e6d8

Browse files
authored
chore: add sync-prs-to-linear action (#207)
1 parent d0420a6 commit 009e6d8

1 file changed

Lines changed: 24 additions & 0 deletions

File tree

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Sync Open PRs to Linear
2+
3+
on:
4+
schedule:
5+
- cron: '0 10 * * *'
6+
workflow_dispatch:
7+
8+
permissions:
9+
contents: none
10+
11+
jobs:
12+
sync:
13+
runs-on: ubuntu-latest
14+
timeout-minutes: 15
15+
permissions:
16+
pull-requests: write
17+
issues: write
18+
19+
steps:
20+
- uses: resend/public-shared-workflows/.github/actions/sync_prs_to_linear@6adbbae7541681ead204faab5d4e5ea9bebca4da
21+
with:
22+
linear-api-key: ${{ secrets.LINEAR_API_KEY }}
23+
linear-team-id: ${{ secrets.LINEAR_TEAM_ID }}
24+
github-token: ${{ github.token }}

0 commit comments

Comments
 (0)