Skip to content

Commit 5815b81

Browse files
author
Drew Yang
committed
fix: 🐛 forgot pre-commit
1 parent a488d20 commit 5815b81

File tree

3 files changed

+5
-7
lines changed

3 files changed

+5
-7
lines changed

.github/pr_labeler.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ documentation:
1515
- CONTRIBUTING.md
1616
enhancement:
1717
- head-branch: ['enhance', 'improve', 'IMPR', 'DJEP']
18-
enhancement:
1918
- changed-files:
2019
- any-glob-to-any-file:
2120
- '**'

.github/workflows/post_release.yaml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ on:
1010
- released
1111

1212
jobs:
13+
call-publish-docs:
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: ./.github/workflows/docs.yaml
1317
update-version:
1418
permissions:
1519
# write permission is required to update version.py
@@ -20,11 +24,6 @@ jobs:
2024
uses: actions/checkout@v4
2125
with:
2226
token: ${{ secrets.GITHUB_TOKEN }}
23-
- name: Publish docs
24-
call-publish-docs:
25-
runs-on: ubuntu-latest
26-
steps:
27-
- uses: ./.github/workflows/docs.yaml
2827
- name: Update version.py
2928
id: update_version
3029
run: |

datajoint/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# version bump auto managed by Github Actions:
22
# label_prs.yaml(prep), release.yaml(bump), post_release.yaml(edit)
3-
# manually set this version will be eventaully overwriten by the above actions
3+
# manually set this version will be eventually overwritten by the above actions
44
__version__ = "0.14.4"
55

66
assert len(__version__) <= 10 # The log table limits version to the 10 characters

0 commit comments

Comments
 (0)