Skip to content
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/linear-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Linear Release Sync

# flash-examples has no versioned release system (no release-please, no tags),
# so this uses a continuous pipeline: every push to main is synced to Linear as
# a release, scanning commits for issue identifiers.
on:
push:
branches: [main]
workflow_dispatch:

permissions:
contents: read

jobs:
linear-sync:
name: Linear Release Sync
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Required for commit history scanning

- uses: linear/linear-release-action@v0
with:
access_key: ${{ secrets.LINEAR_RELEASE_ACCESS_KEY }}
command: sync
Loading