We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d0420a6 commit 009e6d8Copy full SHA for 009e6d8
1 file changed
.github/workflows/sync-prs-to-linear.yml
@@ -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