-
-
Notifications
You must be signed in to change notification settings - Fork 0
37 lines (34 loc) · 1.8 KB
/
Copy pathopencode.yml
File metadata and controls
37 lines (34 loc) · 1.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name: OpenCode (deprecated)
on:
workflow_dispatch:
inputs:
reason:
description: "Reason for manual trigger"
required: false
default: "deprecated — no-op"
permissions:
contents: read
jobs:
noop:
name: No-op (deprecated)
runs-on: ubuntu-latest
steps:
- name: Deprecation notice
run: |
echo "╔══════════════════════════════════════════════════════════╗"
echo "║ ║"
echo "║ This workflow is deprecated. ║"
echo "║ ║"
echo "║ The 'opencode' action has been replaced by the ║"
echo "║ dedicated workflows in this repository: ║"
echo "║ ║"
echo "║ • opencode-implement.yaml ║"
echo "║ • opencode-review.yaml ║"
echo "║ • opencode-triage.yaml ║"
echo "║ ║"
echo "║ Please migrate to the appropriate workflow. ║"
echo "║ This workflow performs no operations. ║"
echo "║ ║"
echo "╚══════════════════════════════════════════════════════════╝"
- name: Exit successfully (no-op)
run: exit 0