Skip to content

Commit cd42301

Browse files
Merge branch 'main' into v5
2 parents 7368448 + ff41d83 commit cd42301

147 files changed

Lines changed: 9833 additions & 1509 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/deploy-railway.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
name: Deploy to Railway
22

3+
permissions: {}
4+
35
on:
46
workflow_run:
57
workflows: ["Release Sourcebot (Development)"]

.github/workflows/docs-broken-links.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
name: Check for broken links in docs
22

3+
permissions: {}
4+
35
on:
46
pull_request:
57
branches: ["main"]
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
name: Linear Release
2+
3+
on:
4+
workflow_run:
5+
workflows: [ "Release Sourcebot (Production)" ]
6+
types:
7+
- completed
8+
9+
permissions:
10+
contents: read
11+
12+
jobs:
13+
linear-release:
14+
if: ${{ github.event.workflow_run.conclusion == 'success' }}
15+
runs-on: ubuntu-latest
16+
steps:
17+
- name: Checkout repository
18+
uses: actions/checkout@v4
19+
with:
20+
ref: main
21+
fetch-depth: 0
22+
23+
- name: Extract version from release
24+
id: extract_version
25+
run: |
26+
# Get the latest version from CHANGELOG.md (first non-Unreleased version)
27+
VERSION=$(grep -oP '## \[\K[0-9]+\.[0-9]+\.[0-9]+' CHANGELOG.md | head -n 1)
28+
29+
if [ -z "$VERSION" ]; then
30+
echo "Error: Could not extract version from CHANGELOG.md"
31+
exit 1
32+
fi
33+
34+
echo "Detected version: $VERSION"
35+
echo "version=$VERSION" >> $GITHUB_OUTPUT
36+
37+
- uses: linear/linear-release-action@v0
38+
with:
39+
access_key: ${{ secrets.LINEAR_ACCESS_KEY }}
40+
version: ${{ steps.extract_version.outputs.version }}

.github/workflows/trivy-vulnerability-triage.yml

Lines changed: 0 additions & 110 deletions
This file was deleted.

0 commit comments

Comments
 (0)