Skip to content

Commit 754ddcc

Browse files
author
Nicki Nixon
committed
chore(ci): update workflows for v20111101.yml filename
Update GitHub Actions workflows to reference v20111101.yml instead of mx_platform_api.yml after file rename for version clarity. Also fix .gitignore to allow workflow files while blocking AI toolkit: - Changed from broad .github/* pattern to specific subdirectories - Now ignores: .github/instructions/*, .github/chatmodes/*, .github/prompts/* - Allows: .github/workflows/* (CI/CD pipelines) Files updated: - .github/workflows/validate.yml - .github/workflows/version.yml - .github/workflows/update.yml - .gitignore Refs: devx-7466
1 parent a50ec03 commit 754ddcc

4 files changed

Lines changed: 7 additions & 5 deletions

File tree

.github/workflows/update.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
id: changed-files-specific
2929
uses: tj-actions/changed-files@v41
3030
with:
31-
files: openapi/mx_platform_api.yml
31+
files: openapi/v20111101.yml
3232
- name: Generate access token
3333
id: generate_token
3434
uses: tibdex/github-app-token@v1

.github/workflows/validate.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ jobs:
1010
- name: Validate OpenAPI Schema
1111
uses: thiyagu06/openapi-validator-action@v1
1212
with:
13-
filepath: 'openapi/mx_platform_api.yml'
13+
filepath: 'openapi/v20111101.yml'
1414
- name: Validate OpenAPI YAML
1515
uses: ibiqlik/action-yamllint@v3
1616
with:
17-
file_or_dir: openapi/mx_platform_api.yml
17+
file_or_dir: openapi/v20111101.yml
1818
config_file: .yamllint.yml

.github/workflows/version.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
id: changed-files-specific
1717
uses: tj-actions/changed-files@v41
1818
with:
19-
files: openapi/mx_platform_api.yml
19+
files: openapi/v20111101.yml
2020

2121
- name: Require version label if openapi spec changed
2222
if: steps.changed-files-specific.outputs.any_changed == 'true'

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
.mcp.json
66
.cursor/*
77
.gemini/*
8-
.github/*
8+
.github/instructions/*
9+
.github/chatmodes/*
10+
.github/prompts/*
911
.vscode/mcp.json
1012
# === End AI Toolkit ===

0 commit comments

Comments
 (0)