-
Notifications
You must be signed in to change notification settings - Fork 0
Linear-integration #11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
4b07699
feat(github): add webhook integration with octocrab models
SeanJA239 618a960
style(lint): fix clippy warnings for match ergonomics
SeanJA239 586be82
config: sqlite class and octocrab
SeanJA239 0713a51
ci: removed --all-feature
SeanJA239 33285d1
feat: seperate lark apps configuration
SeanJA239 3d1624f
feat: disable push notifications to prevent Lark group spam
SeanJA239 56b8776
cd: CF deployment
SeanJA239 d0d7dd0
feat: x/twitter link preview
SeanJA239 6c3ca3e
feat(linear): show status transitions and description preview in upda…
SeanJA239 4c7cede
feat(linear): longer debounce and introduce max_wait() to ensure noti…
SeanJA239 1453316
feat(linear): store metrics status in workflow_states for event updat…
SeanJA239 dad9e83
fix: fix X metrics emoji display and GitHub repo whitelist bypass
SeanJA239 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,28 @@ | ||
| name: Deploy | ||
|
|
||
| on: | ||
| push: | ||
| branches: [main] | ||
| paths: ["**.rs", "Cargo.toml", "Cargo.lock", "wrangler.toml", ".github/workflows/deploy.yml"] | ||
|
|
||
| concurrency: | ||
| group: deploy | ||
| cancel-in-progress: true | ||
|
|
||
| jobs: | ||
| deploy: | ||
| name: Deploy to Cloudflare Workers | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
|
|
||
| - uses: dtolnay/rust-toolchain@stable | ||
| with: | ||
| targets: wasm32-unknown-unknown | ||
|
|
||
| - uses: Swatinem/rust-cache@v2 | ||
|
|
||
| - uses: cloudflare/wrangler-action@v3 | ||
| with: | ||
| apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }} | ||
| accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
CI clippy no longer runs with
--all-features. Since this repo has feature-gated targets (nativevscf-worker), dropping--all-featurescan let feature-specific compilation/lint issues slip through (notably for the Cloudflare Worker build). Consider adding a second clippy step for--no-default-features --features cf-workeror re-enabling--all-features.