Spaces:
Sleeping
Sleeping
Commit ·
e81fc86
1
Parent(s): f019b33
Fix: Add permissions to check-filesize workflow
Browse files
.github/workflows/check-filesize.yml
CHANGED
|
@@ -12,6 +12,9 @@ permissions:
|
|
| 12 |
jobs:
|
| 13 |
check-size:
|
| 14 |
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
|
|
| 15 |
steps:
|
| 16 |
- name: Checkout repository
|
| 17 |
uses: actions/checkout@v4
|
|
|
|
| 12 |
jobs:
|
| 13 |
check-size:
|
| 14 |
runs-on: ubuntu-latest
|
| 15 |
+
permissions:
|
| 16 |
+
contents: read
|
| 17 |
+
pull-requests: write
|
| 18 |
steps:
|
| 19 |
- name: Checkout repository
|
| 20 |
uses: actions/checkout@v4
|