Spaces:
Running
Running
Saibalaji Namburi commited on
Commit ·
c3c392f
1
Parent(s): 85cee59
fix: grant write permissions to GITHUB_TOKEN for CML job
Browse files
.github/workflows/train.yml
CHANGED
|
@@ -9,6 +9,9 @@ on:
|
|
| 9 |
jobs:
|
| 10 |
train-and-report:
|
| 11 |
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
|
|
| 12 |
steps:
|
| 13 |
- name: Checkout repository
|
| 14 |
uses: actions/checkout@v4
|
|
|
|
| 9 |
jobs:
|
| 10 |
train-and-report:
|
| 11 |
runs-on: ubuntu-latest
|
| 12 |
+
permissions:
|
| 13 |
+
contents: write
|
| 14 |
+
pull-requests: write
|
| 15 |
steps:
|
| 16 |
- name: Checkout repository
|
| 17 |
uses: actions/checkout@v4
|