Skip to content

Commit 53e14bb

Browse files
committed
Address Copilot review feedback
- Fix conda channel name: 'default' -> 'defaults' - Add permissions block to ci.yml (actions: read for artifact download) - Tighten publish.yml permissions: contents: write -> contents: read
1 parent bfcd523 commit 53e14bb

3 files changed

Lines changed: 6 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
name: Build Project [using jupyter-book]
22
on: [pull_request]
33

4+
permissions:
5+
contents: read
6+
actions: read
7+
48
jobs:
59
preview:
610
runs-on: ubuntu-latest

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
- 'publish*'
66

77
permissions:
8-
contents: write
8+
contents: read
99
actions: read
1010
pages: write
1111
id-token: write

environment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: quantecon
22
channels:
3-
- default
3+
- defaults
44
dependencies:
55
- python=3.13
66
- anaconda=2025.12

0 commit comments

Comments
 (0)