-
Notifications
You must be signed in to change notification settings - Fork 0
58 lines (55 loc) · 2.03 KB
/
nbconvert.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
on: [workflow_dispatch]
name: GitHub Actions for nbconvert
jobs:
nbconvert:
runs-on: ubuntu-latest
name: nbconvert
steps:
- name: checkout repo
uses: actions/checkout@v3
# - name: Extract branch name & create the nbconvert branch
# shell: bash
# run: |
# echo "GitHub reft_name ${{ github.ref_name }}"
# git checkout -b nbconvertt
# git push -u origin nbconvertt
# id: extract_branch
- name: nbconvert run
run: |
pip install -r requirements.txt
python -m pip install jupyter nbconvert nbformat
python -m spacy download en_core_web_lg
jupyter nbconvert --execute --to notebook --inplace --ExecutePreprocessor.timeout=-1 checkmd.ipynb
# Use the output from the `preflight` step
- name: Use the output
run: echo "Notebook path ${{ steps.preflight.outputs.notebook_path }} - workspace ${{ steps.preflight.outputs.workspace }}"
- name: commit changes
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: Automated commit
branch: nbconvertt
create_branch: true
file_pattern: '*.ipynb'
- name: Create Pull Request
id: cpr
uses: peter-evans/create-pull-request@v6
with:
token: ${{ secrets.GITHUB_TOKEN }}
commit-message: Update report
committer: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
author: ${{ github.actor }} <${{ github.actor_id }}+${{ github.actor }}@users.noreply.github.com>
signoff: false
branch: nbconvertt
base: master
delete-branch: true
title: '[Example] Update report'
body: |
Update report
- Updated with *today's* date
- Auto-generated by [create-pull-request][1]
labels: |
report
automated pr
assignees: memerchik
reviewers: memerchik
draft: false