-
Notifications
You must be signed in to change notification settings - Fork 235
Update workflow: Draft docs for new features #4421
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -3,16 +3,18 @@ name: "Draft docs for new features" | |
| on: | ||
| push: | ||
| - repo: "mintlify/server" | ||
| context: | ||
| - repo: "mintlify/docs" | ||
| slack_channels: | ||
| - id: "C0A25V4DHP1" | ||
| name: "test-mintie-bot" | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Test Slack channel added to production workflowMedium Severity The new |
||
| branch: main | ||
| - repo: "mintlify/mint" | ||
| branch: main | ||
| context: | ||
| - repo: "mintlify/docs" | ||
| notify: | ||
| slack: | ||
| channel_ids: | ||
| - C0AKYE83VV4 | ||
| automerge: false | ||
| --- | ||
|
|
||
| Review the diff from the last merged PR in the triggering repository. Identify any new features, APIs, or other changes that require documentation. | ||
|
|
||


There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
YAML structure broken by misplaced block insertion
High Severity
The new
context:andslack_channels:blocks were inserted in the middle of theon.pushlist, breaking the YAML frontmatter structure. This causesbranch: mainformintlify/serverand the entiremintlify/mintrepo entry to be displaced underslack_channelsinstead of remaining underon.push. As a result,mintlify/serverloses its branch filter (triggering on all branches),mintlify/mintis no longer a push trigger at all, andslack_channelscontains nonsensicalbranchandrepoproperties.Additional Locations (1)
.mintlify/workflows/draft-feature-docs.md#L4-L5