this is the .yaml I'm using to run and output a comment with cml
name: CNN
on: [push]
jobs:
run:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- uses: iterative/setup-cml@v1
- name: Train model
env:
REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
python -m pip install --upgrade pip
pip install -r require.txt
ipynb-py-convert CNN.ipynb CNN.py
python CNN.py
#echo "## Metrics"
#cat metrics.txt
echo "## Metrics" >> report.md
#cat metrics.txt >> report.md
#echo "## CM" >> report.md
#cml publish cm.png --md >> report.md
cml send-comment report.md
and this is the error that I get every time I commit with cml send comment uncommented. I've tried many different angles but I can't seem to find a solution
I know this was posted a while ago, but I ran into the same issue recently, and the solution I found might help someone else.
In my case, the issue was related to the workflow permissions on my repo. To change that, you can follow the steps:
After that, you should be good to rerun the workflow.