We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 793e160 commit f47f77aCopy full SHA for f47f77a
.github/workflows/mcp-server-info-bot.yml
@@ -1,18 +1,22 @@
1
-name: [DEPRECATED] MCP Server Info Bot
+name: MCP Server Info Bot (DEPRECATED)
2
3
permissions:
4
contents: write
5
pull-requests: write
6
issues: write
7
8
on:
9
- issues:
10
- types: [labeled]
+ workflow_dispatch:
+ inputs:
11
+ force_run:
12
+ description: 'Force run this deprecated workflow (not recommended)'
13
+ required: true
14
+ default: 'false'
15
16
jobs:
17
scrape-and-update:
18
runs-on: ubuntu-latest
- 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
20
steps:
21
- name: Check if user is a maintainer
22
uses: actions/github-script@v6
0 commit comments