|
40 | 40 | "**/.github/workflows/**/*.yml", |
41 | 41 | "**/.github/workflows/**/*.yaml" |
42 | 42 | ], |
43 | | - "configuration": "./language/language-configuration.json" |
| 43 | + "configuration": "./language/language-configuration.json", |
| 44 | + "icon": { |
| 45 | + "dark": "resources/icons/dark/lang.svg", |
| 46 | + "light": "resources/icons/light/lang.svg" |
| 47 | + } |
44 | 48 | } |
45 | 49 | ], |
46 | 50 | "grammars": [ |
|
214 | 218 | { |
215 | 219 | "command": "github-actions.settings.variable.delete", |
216 | 220 | "category": "GitHub Actions", |
217 | | - "title": "Update variable", |
| 221 | + "title": "Delete variable", |
218 | 222 | "icon": { |
219 | 223 | "dark": "resources/icons/dark/remove.svg", |
220 | 224 | "light": "resources/icons/light/remove.svg" |
|
274 | 278 | "viewsWelcome": [ |
275 | 279 | { |
276 | 280 | "view": "github-actions.empty-view", |
277 | | - "contents": "Unable to connect to the GitHub API, please check your internet connection.\n[Refresh](command:github-actions.explorer.refresh)", |
278 | | - "when": "!github-actions.internet-access" |
| 281 | + "contents": "Sign in to GitHub to display runs, workflows, and configure Actions settings.\n[Sign in to GitHub](command:github-actions.sign-in)", |
| 282 | + "when": "!github-actions.signed-in" |
279 | 283 | }, |
280 | 284 | { |
281 | 285 | "view": "github-actions.empty-view", |
282 | | - "contents": "Sign in to GitHub to display runs, workflows, and configure Actions settings.\n[Sign in to GitHub](command:github-actions.sign-in)", |
283 | | - "when": "github-actions.internet-access && !github-actions.signed-in" |
| 286 | + "contents": "Unable to connect to the GitHub API, please check your internet connection.\n[Refresh](command:github-actions.explorer.refresh)", |
| 287 | + "when": "github-actions.signed-in && !github-actions.internet-access" |
284 | 288 | }, |
285 | 289 | { |
286 | 290 | "view": "github-actions.empty-view", |
|
414 | 418 | } |
415 | 419 | ], |
416 | 420 | "commandPalette": [ |
| 421 | + { |
| 422 | + "command": "github-actions.explorer.openRun", |
| 423 | + "when": "false" |
| 424 | + }, |
417 | 425 | { |
418 | 426 | "command": "github-actions.explorer.openWorkflowFile", |
419 | 427 | "when": "false" |
|
427 | 435 | "when": "false" |
428 | 436 | }, |
429 | 437 | { |
430 | | - "command": "github-actions.workflow.run.cancel", |
| 438 | + "command": "github-actions.workflow.logs", |
431 | 439 | "when": "false" |
432 | 440 | }, |
433 | 441 | { |
434 | 442 | "command": "github-actions.workflow.run.rerun", |
435 | 443 | "when": "false" |
436 | 444 | }, |
| 445 | + { |
| 446 | + "command": "github-actions.workflow.run.cancel", |
| 447 | + "when": "false" |
| 448 | + }, |
437 | 449 | { |
438 | 450 | "command": "github-actions.settings.secrets.manage", |
439 | 451 | "when": "false" |
|
442 | 454 | "command": "github-actions.settings.secret.add", |
443 | 455 | "when": "false" |
444 | 456 | }, |
| 457 | + { |
| 458 | + "command": "github-actions.settings.secret.copy", |
| 459 | + "when": "false" |
| 460 | + }, |
445 | 461 | { |
446 | 462 | "command": "github-actions.settings.secret.update", |
447 | 463 | "when": "false" |
|
462 | 478 | "command": "github-actions.settings.variable.delete", |
463 | 479 | "when": "false" |
464 | 480 | }, |
| 481 | + { |
| 482 | + "command": "github-actions.settings.variable.copy-name", |
| 483 | + "when": "false" |
| 484 | + }, |
| 485 | + { |
| 486 | + "command": "github-actions.settings.variable.copy-value", |
| 487 | + "when": "false" |
| 488 | + }, |
465 | 489 | { |
466 | 490 | "command": "github-actions.workflow.pin", |
467 | 491 | "when": "false" |
|
486 | 510 | "open-in-browser": "vscode-test-web --extensionDevelopmentPath=. .", |
487 | 511 | "lint": "eslint . --ext .ts", |
488 | 512 | "lint-fix": "eslint . --ext .ts --fix", |
489 | | - "prettier": "prettier .", |
490 | | - "prettier-fix": "prettier --write .", |
| 513 | + "format": "prettier --write '**/*.ts'", |
| 514 | + "format-check": "prettier --check '**/*.ts'", |
491 | 515 | "test": "NODE_OPTIONS=\"--experimental-vm-modules\" jest", |
492 | 516 | "test-watch": "NODE_OPTIONS=\"--experimental-vm-modules\" jest --watch" |
493 | 517 | }, |
|
504 | 528 | "eslint-plugin-prettier": "^4.2.1", |
505 | 529 | "jest": "^29.0.3", |
506 | 530 | "node-loader": "^0.6.0", |
507 | | - "prettier": "^2.7.1", |
| 531 | + "prettier": "^2.8.3", |
508 | 532 | "rimraf": "^3.0.1", |
509 | 533 | "source-map-loader": "^4.0.1", |
510 | 534 | "ts-jest": "^29.0.3", |
511 | 535 | "ts-loader": "^9.4.1", |
512 | 536 | "typescript": "^4.9.4", |
513 | 537 | "vsce": "^2.11.0", |
514 | | - "webpack": "^5.74.0", |
| 538 | + "webpack": "^5.76.0", |
515 | 539 | "webpack-cli": "^4.10.0" |
516 | 540 | }, |
517 | 541 | "dependencies": { |
|
0 commit comments