Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/workflows/close-stale-prs.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Close stale PRs
name: close-stale-prs

on:
workflow_dispatch:
Expand Down
33 changes: 0 additions & 33 deletions .github/workflows/contributors-label.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/daily-issues-recap.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Daily Issues Recap
name: daily-issues-recap

on:
schedule:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/daily-pr-recap.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Daily PR Recap
name: daily-pr-recap

on:
schedule:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs-update.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Docs Update
name: docs-update

on:
schedule:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/duplicate-issues.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Duplicate Issue Detection
name: duplicate-issues

on:
issues:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/nix-desktop.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: nix desktop
name: nix-desktop

on:
push:
Expand All @@ -21,7 +21,7 @@ on:
workflow_dispatch:

jobs:
build-desktop:
nix-desktop:
strategy:
fail-fast: false
matrix:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Update Nix Hashes
name: nix-hashes

permissions:
contents: write
Expand All @@ -11,17 +11,17 @@ on:
- "package.json"
- "packages/*/package.json"
- "flake.lock"
- ".github/workflows/update-nix-hashes.yml"
- ".github/workflows/nix-hashes.yml"
pull_request:
paths:
- "bun.lock"
- "package.json"
- "packages/*/package.json"
- "flake.lock"
- ".github/workflows/update-nix-hashes.yml"
- ".github/workflows/nix-hashes.yml"

jobs:
update-node-modules-hashes:
nix-hashes:
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository
runs-on: blacksmith-4vcpu-ubuntu-2404
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/notify-discord.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: discord
name: notify-discord

on:
release:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Duplicate PR Check
name: pr-management

on:
pull_request_target:
Expand Down Expand Up @@ -63,3 +63,26 @@ jobs:
gh pr comment "$PR_NUMBER" --body "_The following comment was made by an LLM, it may be inaccurate:_

$COMMENT"

add-contributor-label:
runs-on: ubuntu-latest
permissions:
pull-requests: write
issues: write
steps:
- name: Add Contributor Label
uses: actions/github-script@v8
with:
script: |
const isPR = !!context.payload.pull_request;
const issueNumber = isPR ? context.payload.pull_request.number : context.payload.issue.number;
const authorAssociation = isPR ? context.payload.pull_request.author_association : context.payload.issue.author_association;

if (authorAssociation === 'CONTRIBUTOR') {
await github.rest.issues.addLabels({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: issueNumber,
labels: ['contributor']
});
}
2 changes: 1 addition & 1 deletion .github/workflows/pr-standards.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: PR Standards
name: pr-standards

on:
pull_request_target:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/review.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Guidelines Check
name: review

on:
issue_comment:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/stale-issues.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: "Auto-close stale issues"
name: stale-issues

on:
schedule:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/triage.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Issue Triage
name: triage

on:
issues:
Expand Down
2 changes: 1 addition & 1 deletion packages/app/e2e/file-tree.spec.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { test, expect } from "./fixtures"

test("file tree can expand folders and open a file", async ({ page, gotoSession }) => {
test.skip("file tree can expand folders and open a file", async ({ page, gotoSession }) => {
await gotoSession()

const toggle = page.getByRole("button", { name: "Toggle file tree" })
Expand Down
2 changes: 1 addition & 1 deletion packages/app/src/addons/serialize.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ function writeAndWait(term: Terminal, data: string): Promise<void> {
})
}

describe("SerializeAddon", () => {
describe.skip("SerializeAddon", () => {
describe("ANSI color preservation", () => {
test("should preserve text attributes (bold, italic, underline)", async () => {
const { term, addon } = createTerminal()
Expand Down
2 changes: 1 addition & 1 deletion packages/app/src/context/layout-scroll.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { makePersisted, type SyncStorage } from "@solid-primitives/storage"
import { createScrollPersistence } from "./layout-scroll"

describe("createScrollPersistence", () => {
test("debounces persisted scroll writes", async () => {
test.skip("debounces persisted scroll writes", async () => {
const key = "layout-scroll.test"
const data = new Map<string, string>()
const writes: string[] = []
Expand Down