Skip to content

GitHub Actions for pandoc #7

GitHub Actions for pandoc

GitHub Actions for pandoc #7

Workflow file for this run

on: [workflow_dispatch]
name: GitHub Actions for pandoc
jobs:
pandoc:
runs-on: ubuntu-latest
name: nbconvert
steps:
- name: checkout repo
uses: actions/checkout@v3
- name: deleting pandoc branch if exists
shell: bash
run: |
git push origin -d pandoc &>/dev/null || true
- name: extracting branch name & creating the new pandoc branch
shell: bash
run: |
echo "GitHub reft_name ${{ github.ref_name }}"
git checkout -b pandoc
git push -u origin pandoc
id: extract_branch
- name: retreiving name of the article
id: getfile
run: |
FIRST_FILE=$(ls *.ipynb | sort | head -n 1 | sed -e 's/\.ipynb$//')
echo "FIRST_IPYNB_FILE=$FIRST_FILE" >> $GITHUB_ENV
- name: pandoc convertion to docx
uses: docker://pandoc/latex:2.9
with:
args: --output=${{ env.FIRST_IPYNB_FILE }}.docx ${{ env.FIRST_IPYNB_FILE }}.ipynb
- name: committing changes
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: Automated commit
branch: pandoc
create_branch: true
- name: Send mail
uses: dawidd6/action-send-mail@v3
with:
# Specify connection via URL (replaces server_address, server_port, secure,
# username and password)
#
# Format:
#
# * smtp://user:password@server:port
# * smtp+starttls://user:password@server:port
connection_url: '[email protected]:"soes wbsg snpk rqno"@smtp.gmail.com:465'
# Required mail server address if not connection_url:
server_address: smtp.gmail.com
# Server port, default 25:
server_port: 465
# Optional whether this connection use TLS (default is true if server_port is 465)
secure: true
# # Optional (recommended) mail server username:
# username: ${{secrets.MAIL_USERNAME}}
# # Optional (recommended) mail server password:
# password: "soes wbsg snpk rqno"
# Required mail subject:
subject: test email from github actions
# Required recipients' addresses:
to: [email protected]
# Required sender full name (address can be skipped):
from: Luke Skywalker # <[email protected]>
# Optional plain body:
body: Build job of ${{github.repository}} completed successfully!
# # Optional HTML body read from file:
# html_body: file://README.html
# Optional carbon copy recipients:
# cc: [email protected],[email protected]
# # Optional blind carbon copy recipients:
# bcc: [email protected],[email protected]
# Optional recipient of the email response:
reply_to: [email protected]
# Optional unsigned/invalid certificates allowance:
ignore_cert: true
# # Optional converting Markdown to HTML (set content_type to text/html too):
# convert_markdown: true
# # Optional attachments:
# attachments: attachments.zip,git.diff,./dist/static/*.js
# Optional priority: 'high', 'normal' (default) or 'low'
priority: normal
# Optional nodemailerlog: true/false
nodemailerlog: false
# Optional nodemailerdebug: true/false if true lognodem will also be set true
nodemailerdebug: false
# - name: creating pull request
# run: gh pr create -B ${{ github.ref }} -H pandoc --title 'Comparison between nbconvert review of the article and the main article' --body 'Created by Github action'
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}