Skip to content
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

Test #21936

Closed
wants to merge 2 commits into from
Closed

Test #21936

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions .github/workflows/add-milestone.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: "Add milestone to closed issue"
on:
issues:
types: [closed, reopened]

jobs:
main:
runs-on: ubuntu-latest
steps:
- name: Checkout Actions
uses: actions/checkout@v3
with:
repository: "karrtikr/vscode-github-triage-actions"
ref: stable
path: ./actions
- name: Checkout Repo
if: github.event_name != 'issues'
uses: actions/checkout@v3
with:
path: ./repo
fetch-depth: 0
- name: Install Actions
run: npm install --production --prefix ./actions
- name: "Add milestone to closed issue"
uses: ./actions/python-add-milestone
with:
token: ${{secrets.GITHUB_TOKEN}}
1 change: 1 addition & 0 deletions src/client/interpreter/virtualEnvs/virtualEnvPrompt.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ export class VirtualEnvironmentPrompt implements IExtensionActivationService {
) {}

public async activate(resource: Uri): Promise<void> {
// Random commit
const disposable = this.pyenvs.onDidCreate(resource, () => this.handleNewEnvironment(resource));
this.disposableRegistry.push(disposable);
}
Expand Down
Loading