Skip to content

Commit 249fe31

Browse files
templatized readme
1 parent 0aa4819 commit 249fe31

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/push.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,11 @@ on:
1111

1212
jobs:
1313
bump_version:
14-
if: github.event.head_commit.message !~ '.*\[skip release\].*' && github.event_name == 'push' && github.ref == 'refs/heads/main'
14+
if: |
15+
!contains(github.event.head_commit.message, '[skip release]') &&
16+
github.event_name == 'push' &&
17+
github.ref == 'refs/heads/main'
18+
1519
name: Bump Version, Publish to PyPI, tag, and deploy docs
1620
runs-on: ubuntu-latest
1721
steps:

.github/workflows/update-readme.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
run: pip install Jinja2 requests
2828

2929
- name: Render README with PePy stats
30-
run: ./readme.py
30+
run: python3 readme.py
3131

3232
- name: Commit and push if README changed
3333
run: |

0 commit comments

Comments
 (0)