Skip to content

Commit

Permalink
Merge pull request #995 from mrapp-ke/fix-release
Browse files Browse the repository at this point in the history
Fix release
  • Loading branch information
michael-rapp authored Aug 1, 2024
2 parents 1dbc37f + cddaf02 commit 2665ebb
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/merge_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
git merge origin/main --strategy-option theirs -m "[Bot] Merge branch \"main\" into \"feature\"."
git push origin feature
- name: Merge into bugfix branch
if: ${{ github.event.release.target_commitish == 'main' }} || ${{ github.event.release.target_commitish == 'feature' }}
if: ${{ github.event.release.target_commitish == 'main' || github.event.release.target_commitish == 'feature' }}
run: |
git checkout -b bugfix origin/bugfix
git merge origin/feature --strategy-option theirs -m "[Bot] Merge branch \"feature\" into \"bugfix\"."
Expand Down
4 changes: 2 additions & 2 deletions doc/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
breathe >= 4.35, < 4.36
furo == 2024.5.6
furo == 2024.7.18
myst-parser >= 3.0, < 3.1
sphinx >= 7.2, < 7.3
sphinx >= 7.4, < 7.5
sphinx-copybutton >= 0.5, < 0.6
sphinx-favicon >= 1.0, < 1.1
sphinx-inline-tabs == 2023.4.21
Expand Down
4 changes: 2 additions & 2 deletions scons/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ cython >= 3.0, < 3.1
isort >= 5.13, < 5.14
mdformat >= 0.7, < 0.8
mdformat-myst >= 0.1, < 0.2
meson >= 1.4, < 1.5
meson >= 1.5, < 1.6
ninja >= 1.11, < 1.12
pylint >= 3.2, < 3.3
setuptools
scons >= 4.7, < 4.8
scons >= 4.8, < 4.9
unittest-xml-reporting >= 3.2, < 3.3
wheel >= 0.43, < 0.44
yamlfix >= 1.16, < 1.17
Expand Down

0 comments on commit 2665ebb

Please sign in to comment.