summaryrefslogtreecommitdiffhomepage
path: root/.github/workflows
diff options
context:
space:
mode:
authorDax <[email protected]>2026-01-29 13:57:59 -0500
committerGitHub <[email protected]>2026-01-29 18:57:59 +0000
commita9a7595234e19f7fa34c3317919c7454bd25a73a (patch)
tree686b1c108809ff563a43befe3b37972c4c20948b /.github/workflows
parent9ed3b0742f3861c5cbb0974329b13a228dcfd1a7 (diff)
downloadopencode-a9a7595234e19f7fa34c3317919c7454bd25a73a.tar.gz
opencode-a9a7595234e19f7fa34c3317919c7454bd25a73a.zip
test: skip failing tests (#11184)
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/close-stale-prs.yml2
-rw-r--r--.github/workflows/contributors-label.yml33
-rw-r--r--.github/workflows/daily-issues-recap.yml2
-rw-r--r--.github/workflows/daily-pr-recap.yml2
-rw-r--r--.github/workflows/docs-update.yml2
-rw-r--r--.github/workflows/duplicate-issues.yml2
-rw-r--r--.github/workflows/nix-desktop.yml4
-rw-r--r--.github/workflows/nix-hashes.yml (renamed from .github/workflows/update-nix-hashes.yml)8
-rw-r--r--.github/workflows/notify-discord.yml2
-rw-r--r--.github/workflows/pr-management.yml (renamed from .github/workflows/duplicate-prs.yml)25
-rw-r--r--.github/workflows/pr-standards.yml2
-rw-r--r--.github/workflows/review.yml2
-rw-r--r--.github/workflows/stale-issues.yml2
-rw-r--r--.github/workflows/triage.yml2
14 files changed, 40 insertions, 50 deletions
diff --git a/.github/workflows/close-stale-prs.yml b/.github/workflows/close-stale-prs.yml
index 787ee02e6..cb5c45063 100644
--- a/.github/workflows/close-stale-prs.yml
+++ b/.github/workflows/close-stale-prs.yml
@@ -1,4 +1,4 @@
-name: Close stale PRs
+name: close-stale-prs
on:
workflow_dispatch:
diff --git a/.github/workflows/contributors-label.yml b/.github/workflows/contributors-label.yml
deleted file mode 100644
index e97c5c470..000000000
--- a/.github/workflows/contributors-label.yml
+++ /dev/null
@@ -1,33 +0,0 @@
-name: Add Contributors Label
-
-on:
- # issues:
- # types: [opened]
-
- pull_request_target:
- types: [opened]
-
-jobs:
- 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']
- });
- }
diff --git a/.github/workflows/daily-issues-recap.yml b/.github/workflows/daily-issues-recap.yml
index a333e5365..79543fcb1 100644
--- a/.github/workflows/daily-issues-recap.yml
+++ b/.github/workflows/daily-issues-recap.yml
@@ -1,4 +1,4 @@
-name: Daily Issues Recap
+name: daily-issues-recap
on:
schedule:
diff --git a/.github/workflows/daily-pr-recap.yml b/.github/workflows/daily-pr-recap.yml
index 7c8bab395..7ca94bd23 100644
--- a/.github/workflows/daily-pr-recap.yml
+++ b/.github/workflows/daily-pr-recap.yml
@@ -1,4 +1,4 @@
-name: Daily PR Recap
+name: daily-pr-recap
on:
schedule:
diff --git a/.github/workflows/docs-update.yml b/.github/workflows/docs-update.yml
index a8dd2ae4f..900ad2b0c 100644
--- a/.github/workflows/docs-update.yml
+++ b/.github/workflows/docs-update.yml
@@ -1,4 +1,4 @@
-name: Docs Update
+name: docs-update
on:
schedule:
diff --git a/.github/workflows/duplicate-issues.yml b/.github/workflows/duplicate-issues.yml
index 53aa2a725..cbe8df517 100644
--- a/.github/workflows/duplicate-issues.yml
+++ b/.github/workflows/duplicate-issues.yml
@@ -1,4 +1,4 @@
-name: Duplicate Issue Detection
+name: duplicate-issues
on:
issues:
diff --git a/.github/workflows/nix-desktop.yml b/.github/workflows/nix-desktop.yml
index 3d7c48031..031eff6a6 100644
--- a/.github/workflows/nix-desktop.yml
+++ b/.github/workflows/nix-desktop.yml
@@ -1,4 +1,4 @@
-name: nix desktop
+name: nix-desktop
on:
push:
@@ -21,7 +21,7 @@ on:
workflow_dispatch:
jobs:
- build-desktop:
+ nix-desktop:
strategy:
fail-fast: false
matrix:
diff --git a/.github/workflows/update-nix-hashes.yml b/.github/workflows/nix-hashes.yml
index 7175f4fbd..63ab56188 100644
--- a/.github/workflows/update-nix-hashes.yml
+++ b/.github/workflows/nix-hashes.yml
@@ -1,4 +1,4 @@
-name: Update Nix Hashes
+name: nix-hashes
permissions:
contents: write
@@ -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:
diff --git a/.github/workflows/notify-discord.yml b/.github/workflows/notify-discord.yml
index 62577ecf0..b1d805360 100644
--- a/.github/workflows/notify-discord.yml
+++ b/.github/workflows/notify-discord.yml
@@ -1,4 +1,4 @@
-name: discord
+name: notify-discord
on:
release:
diff --git a/.github/workflows/duplicate-prs.yml b/.github/workflows/pr-management.yml
index 326068589..25bea2f24 100644
--- a/.github/workflows/duplicate-prs.yml
+++ b/.github/workflows/pr-management.yml
@@ -1,4 +1,4 @@
-name: Duplicate PR Check
+name: pr-management
on:
pull_request_target:
@@ -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']
+ });
+ }
diff --git a/.github/workflows/pr-standards.yml b/.github/workflows/pr-standards.yml
index c1cf17567..397f794a1 100644
--- a/.github/workflows/pr-standards.yml
+++ b/.github/workflows/pr-standards.yml
@@ -1,4 +1,4 @@
-name: PR Standards
+name: pr-standards
on:
pull_request_target:
diff --git a/.github/workflows/review.yml b/.github/workflows/review.yml
index 93b01bafa..58e73fac8 100644
--- a/.github/workflows/review.yml
+++ b/.github/workflows/review.yml
@@ -1,4 +1,4 @@
-name: Guidelines Check
+name: review
on:
issue_comment:
diff --git a/.github/workflows/stale-issues.yml b/.github/workflows/stale-issues.yml
index b5378d7d5..a4b8583f9 100644
--- a/.github/workflows/stale-issues.yml
+++ b/.github/workflows/stale-issues.yml
@@ -1,4 +1,4 @@
-name: "Auto-close stale issues"
+name: stale-issues
on:
schedule:
diff --git a/.github/workflows/triage.yml b/.github/workflows/triage.yml
index 6e1509572..99e7b5b34 100644
--- a/.github/workflows/triage.yml
+++ b/.github/workflows/triage.yml
@@ -1,4 +1,4 @@
-name: Issue Triage
+name: triage
on:
issues: