-
Notifications
You must be signed in to change notification settings - Fork 1
chore(deps): bump minimatch from 0.0.0-local to 3.0.5 in /.github/scripts in the npm_and_yarn group across 1 directory #1421
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
Closed
dependabot
wants to merge
5
commits into
main
from
dependabot/npm_and_yarn/dot-github/scripts/npm_and_yarn-4811a75cc2
Closed
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
39e2bee
chore(deps): bump minimatch
dependabot[bot] 52d13b8
chore(codex-autofix): apply updates (PR #1421)
github-actions[bot] 43595e4
chore(codex-autofix): apply updates (PR #1421)
github-actions[bot] a82eacc
chore(codex-autofix): apply updates (PR #1421)
github-actions[bot] d32c91a
chore(codex-autofix): apply updates (PR #1421)
github-actions[bot] File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| { | ||
| "private": true, | ||
| "dependencies": { | ||
| "minimatch": "0.0.0-local" | ||
| "minimatch": "3.0.5" | ||
| } | ||
| } | ||
38 changes: 38 additions & 0 deletions
38
tests/workflows/fixtures/keepalive/missing_instruction_token.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,38 @@ | ||
| { | ||
| "repo": {"owner": "stranske", "repo": "Workflows"}, | ||
| "now": "2024-05-18T12:00:00Z", | ||
| "clear_token_defaults": true, | ||
| "env": { | ||
| "OPTIONS_JSON": "{}", | ||
| "DRY_RUN": "false", | ||
| "CLEAR_TOKEN_DEFAULTS": "true", | ||
| "clear_token_defaults": "true", | ||
| "ACTIONS_BOT_PAT": "", | ||
| "SERVICE_BOT_PAT": "" | ||
| }, | ||
| "pulls": [ | ||
| { | ||
| "number": 909, | ||
| "labels": ["agents:keepalive"], | ||
| "comments": [ | ||
| { | ||
| "user": {"login": "triage-bot"}, | ||
| "body": "@codex plan-and-execute", | ||
| "created_at": "2024-05-18T08:30:00Z" | ||
| }, | ||
| { | ||
| "user": {"login": "chatgpt-codex-connector"}, | ||
| "body": "Checklist\n- [ ] Verify metrics\n- [x] Stage summary", | ||
| "created_at": "2024-05-18T08:45:00Z" | ||
| }, | ||
| { | ||
| "id": 123456, | ||
| "user": {"login": "stranske-automation-bot"}, | ||
| "body": "<!-- keepalive-round: 1 -->\n<!-- codex-keepalive-marker -->\n\n@codex plan-and-execute\n\n**Keepalive Round 1**\n\nContinue incremental work toward acceptance criteria. Use the current checklist and update task statuses.\nPost an updated summary when this round completes.\n\nCodex, 1/2 checklist item remains unchecked (completed 1).", | ||
| "created_at": "2024-05-18T09:00:00Z", | ||
| "updated_at": "2024-05-18T09:00:00Z" | ||
| } | ||
| ] | ||
| } | ||
| ] | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Upgrading
.github/scripts/package.jsontominimatch@3.0.5switches to the CommonJS default export (module.exports = minimatch), but scripts in this repo import with destructuring (e.g.,const { minimatch } = require('minimatch')inmerge_manager.jsandpr-context-graphql.js). With v3 this evaluates toundefined, so calls likeminimatch(filename, pattern, …)will throw at runtime whenever those scripts execute. Either update the import sites toconst minimatch = require('minimatch')or pin a version that still provides a named export.Useful? React with 👍 / 👎.