-
Notifications
You must be signed in to change notification settings - Fork 14
35 lines (27 loc) · 917 Bytes
/
format-bib.yml
File metadata and controls
35 lines (27 loc) · 917 Bytes
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
name: Format bib
on:
push:
branches: [ main, master ]
jobs:
format-code:
runs-on: ubuntu-latest
permissions:
# Give the default GITHUB_TOKEN write permission to commit and push the
# added or changed files to the repository.
contents: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Download rebiber
run: pip install -e git+https://github.com/yuchenlin/rebiber.git#egg=rebiber -U
- name: Format bib
run: rebiber -i src/references.bib -o src/references.bib
# Commit all changed files back to the repository
- uses: stefanzweifel/git-auto-commit-action@v5
with:
# Optional. Skip internal call to `git fetch`
skip_fetch: true
# Optional. Skip internal call to `git checkout`
skip_checkout: true