Skip to content
This repository was archived by the owner on Mar 28, 2023. It is now read-only.

Commit 634f3b0

Browse files
authored
Merge branch 'main' into dependabot/npm_and_yarn/path-parse-1.0.7
2 parents 0684748 + df1da29 commit 634f3b0

33 files changed

Lines changed: 6800 additions & 480 deletions

.github/workflows/stale.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,6 @@ jobs:
1515
repo-token: ${{ secrets.GITHUB_TOKEN }}
1616
stale-issue-message: 'This issue is stale due to inactivity'
1717
stale-pr-message: 'This PR is stale due to inactivity'
18-
stale-issue-label: 'stale'
18+
stale-issue-label: 'stale'
1919
stale-pr-label: 'stale'
20+
days-before-stale: 120

.vscode/launch.json

Lines changed: 10 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,23 @@
1-
// A launch configuration that compiles the extension and then opens it inside a new window
2-
// Use IntelliSense to learn about possible attributes.
3-
// Hover to view descriptions of existing attributes.
4-
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
51
{
62
"version": "0.2.0",
73
"configurations": [
84
{
9-
"name": "Run extension PWA",
10-
"args": [
11-
"--extensionDevelopmentPath=${workspaceFolder}"
12-
],
13-
"outFiles": [
14-
"${workspaceFolder}/dist/**/*.js",
15-
"${workspaceFolder}/node_modules/**/*.js"
16-
],
17-
"preLaunchTask": "${defaultBuildTask}",
18-
"request": "launch",
19-
"type": "pwa-extensionHost",
20-
"localRoot": "${workspaceFolder}",
21-
"remoteRoot": "${workspaceFolder}/",
22-
"sourceMaps": true
23-
},
24-
{
25-
"name": "Extension Tests",
5+
"name": "Watch & Launch Extension",
266
"type": "extensionHost",
277
"request": "launch",
28-
"runtimeExecutable": "${execPath}",
298
"args": [
309
"--extensionDevelopmentPath=${workspaceFolder}",
31-
"--extensionTestsPath=${workspaceFolder}/out/test/suite/index"
3210
],
33-
"outFiles": [
34-
"${workspaceFolder}/dist/test/**/*.js"
11+
"skipFiles": [
12+
"<node_internals>/**/*.js",
13+
"**/node_modules/**/*.js"
3514
],
36-
"preLaunchTask": "${defaultBuildTask}"
15+
"preLaunchTask": "npm: watch",
16+
"smartStep": true,
17+
"sourceMaps": true,
18+
"outFiles": [
19+
"${workspaceFolder}/dist/*.js"
20+
]
3721
}
3822
]
3923
}

.vscode/tasks.json

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,11 @@
66
{
77
"type": "npm",
88
"script": "watch",
9-
"problemMatcher": "$tsc-watch",
9+
"group": "build",
1010
"isBackground": true,
11-
"presentation": {
12-
"reveal": "never"
13-
},
14-
"group": {
15-
"kind": "build",
16-
"isDefault": true
17-
}
18-
}
11+
"problemMatcher": [
12+
"$ts-webpack-watch"
13+
],
14+
},
1915
]
2016
}

CHANGELOG.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,24 @@
22

33
All notable changes to the "vscode-github-actions" extension will be documented in this file.
44

5+
## [v0.24.0]
6+
- New "Current Branch" view
57

6-
## [vnext]
8+
## [v0.23.0]
9+
- Various bug fixes and schema updates
10+
11+
## [v0.22.0]
12+
- Fix changes in repositories API
13+
14+
## [v0.21.2]
15+
- Remove duplicate trigger run button
16+
17+
## [v0.21.0]
18+
- Support github.dev web editor
19+
20+
## [v0.20.6]
21+
- Improve sign-in flow
22+
- Prepare for web execution
723

824
## [v0.20.3]
925
- Revert `extensionKind` setting so extension works again in remote scenarios

extension.vsixmanifest

Lines changed: 0 additions & 42 deletions
This file was deleted.

0 commit comments

Comments
 (0)