Skip to content

Commit 053a879

Browse files
authored
chore adding security.md, fix pr template and ci validate (github#84)
Signed-off-by: Ivan Pedrazas <[email protected]>
1 parent a063b35 commit 053a879

File tree

3 files changed

+43
-5
lines changed

3 files changed

+43
-5
lines changed

.github/PULL_REQUEST_TEMPLATE/mcp-submission.md renamed to .github/PULL_REQUEST_TEMPLATE.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,5 @@ assignees: ""
2525

2626
- [ ] This server meets the basic requirements listed above
2727
- [ ] I understand this will undergo automated and manual review.
28-
- [ ] I have tested the MCP Server in Docker Desktop
28+
- [ ] I have tested the MCP Server using `task validate -- --name SERVER_NAME`
29+
- [ ] I have built the MCP Server using `task build -- --tools SERVER_NAME`

.github/SECURITY.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
# Security Policy
2+
3+
The maintainers of Docker MCP Registry take security seriously. If you discover
4+
a security issue, please bring it to their attention right away!
5+
6+
## Reporting a Vulnerability
7+
8+
Please **DO NOT** file a public issue, instead send your report privately
9+
10+
11+
Reporter(s) can expect a response within 72 hours, acknowledging the issue was
12+
received.
13+
14+
## Review Process
15+
16+
After receiving the report, an initial triage and technical analysis is
17+
performed to confirm the report and determine its scope. We may request
18+
additional information in this stage of the process.
19+
20+
Once a reviewer has confirmed the relevance of the report, a draft security
21+
advisory will be created on GitHub. The draft advisory will be used to discuss
22+
the issue with maintainers, the reporter(s), and where applicable, other
23+
affected parties under embargo.
24+
25+
If the vulnerability is accepted, a timeline for developing a patch, public
26+
disclosure, and patch release will be determined. If there is an embargo period
27+
on public disclosure before the patch release, the reporter(s) are expected to
28+
participate in the discussion of the timeline and abide by agreed upon dates
29+
for public disclosure.
30+
31+
## Accreditation
32+
33+
Security reports are greatly appreciated and we will publicly thank you,
34+
although we will keep your name confidential if you request it. We also like to
35+
send gifts - if you're into swag, make sure to let us know. We do not currently
36+
offer a paid security bounty program at this time.

.github/workflows/ci.yaml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,19 @@ jobs:
88
- uses: actions/checkout@v4
99
with:
1010
fetch-depth: 0 # Needed for diffing
11-
11+
1212
- name: Install Go
1313
uses: actions/setup-go@v5
1414
with:
1515
cache-dependency-path: go.sum
1616
go-version-file: go.mod
17-
17+
1818
- name: Install Task
1919
uses: arduino/setup-task@v2
2020
with:
2121
version: 3.x
2222
repo-token: ${{ secrets.GITHUB_TOKEN }}
23-
23+
2424
- name: Get changed servers
2525
shell: bash
2626
run: |
@@ -34,10 +34,11 @@ jobs:
3434
while IFS= read -r file; do
3535
dir=$(dirname "$file")
3636
name=$(basename "$dir")
37+
task validate -- --name $name
3738
task build -- --tools --pull-community $name
3839
echo "--------------------------------"
3940
task catalog -- $name
4041
echo "--------------------------------"
4142
cat catalogs/$name/catalog.yaml
4243
echo "--------------------------------"
43-
done < changed-servers.txt
44+
done < changed-servers.txt

0 commit comments

Comments
 (0)