Skip to content

Commit f47f77a

Browse files
chore: deprecate unused workflow (#258)
1 parent 793e160 commit f47f77a

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

.github/workflows/mcp-server-info-bot.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,22 @@
1-
name: [DEPRECATED] MCP Server Info Bot
1+
name: MCP Server Info Bot (DEPRECATED)
22

33
permissions:
44
contents: write
55
pull-requests: write
66
issues: write
77

88
on:
9-
issues:
10-
types: [labeled]
9+
workflow_dispatch:
10+
inputs:
11+
force_run:
12+
description: 'Force run this deprecated workflow (not recommended)'
13+
required: true
14+
default: 'false'
1115

1216
jobs:
1317
scrape-and-update:
1418
runs-on: ubuntu-latest
15-
if: github.event.label.name == 'mcp-server-info-bot' # Trigger only on 'mcp-server-info-bot' label
19+
if: github.event.inputs.force_run == 'true' && false # Disable this deprecated workflow
1620
steps:
1721
- name: Check if user is a maintainer
1822
uses: actions/github-script@v6

0 commit comments

Comments
 (0)