Skip to content

Commit 45673b1

Browse files
committed
update workflows
1 parent 2a219bf commit 45673b1

File tree

5 files changed

+18
-3
lines changed

5 files changed

+18
-3
lines changed

.github/ISSUE_TEMPLATE/2_bug_form.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ body:
88
attributes:
99
value: |
1010
## Before submitting a bug, you may want to check out...
11-
* Troubleshooting on [our wiki](https://github.com/microsoft/vscode-jupyter/wiki)
12-
* Our [Discussions Forum](https://github.com/microsoft/vscode-jupyter/discussions)
11+
* Troubleshooting on [our wiki](https://github.com/deepnote/vscode-extension/wiki)
12+
* Our [Discussions Forum](https://github.com/deepnote/vscode-extension/discussions)
1313
- type: markdown
1414
attributes:
1515
value: |

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
blank_issues_enabled: false
22
contact_links:
33
- name: 'Help and Support'
4-
url: https://github.com/microsoft/vscode-jupyter/discussions/categories/questions-and-answers
4+
url: https://github.com/deepnote/vscode-extension/discussions
55
about: "Need help getting something to work, but you're not sure it's worth of submitting an issue? Ask here."
66
- name: 'Chat on Discord'
77
url: https://aka.ms/python-discord

.github/workflows/aggregate-test-results.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ jobs:
2222
- name: Checkout
2323
uses: actions/checkout@v5
2424
with:
25+
repository: ${{ github.repository }}
26+
token: ${{ github.token }}
2527
persist-credentials: false
2628

2729
- name: setup python

.github/workflows/build-test.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,8 @@ jobs:
6565
- name: Checkout
6666
uses: actions/checkout@v5
6767
with:
68+
repository: ${{ github.repository }}
69+
token: ${{ github.token }}
6870
persist-credentials: false
6971

7072
- name: Use Node ${{env.NODE_VERSION}}
@@ -107,6 +109,8 @@ jobs:
107109
- name: Checkout
108110
uses: actions/checkout@v5
109111
with:
112+
repository: ${{ github.repository }}
113+
token: ${{ github.token }}
110114
persist-credentials: false
111115

112116
- name: Use Node ${{env.NODE_VERSION}}
@@ -195,6 +199,8 @@ jobs:
195199
- name: Checkout
196200
uses: actions/checkout@v5
197201
with:
202+
repository: ${{ github.repository }}
203+
token: ${{ github.token }}
198204
persist-credentials: false
199205

200206
- name: Use Node ${{env.NODE_VERSION}}
@@ -374,6 +380,8 @@ jobs:
374380
- name: Checkout
375381
uses: actions/checkout@v5
376382
with:
383+
repository: ${{ github.repository }}
384+
token: ${{ github.token }}
377385
persist-credentials: false
378386

379387
- name: Generate Tag Variable
@@ -800,6 +808,8 @@ jobs:
800808
- name: Checkout
801809
uses: actions/checkout@v5
802810
with:
811+
repository: ${{ github.repository }}
812+
token: ${{ github.token }}
803813
persist-credentials: false
804814

805815
- name: Use Python ${{matrix.python}}

.github/workflows/copilot-setup-steps.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,9 @@ jobs:
3737
steps:
3838
- name: Checkout code
3939
uses: actions/checkout@v5
40+
with:
41+
repository: ${{ github.repository }}
42+
token: ${{ github.token }}
4043

4144
- name: Use Node ${{env.NODE_VERSION}}
4245
uses: actions/setup-node@v4

0 commit comments

Comments
 (0)