Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,15 +33,15 @@ jobs:
git_commit_gpgsign: true
- name: Push new commit
if: ${{ github.event_name == 'workflow_dispatch' }}
uses: EndBug/add-and-commit@v10
uses: EndBug/add-and-commit@v11
with:
commit: -S
message: 'chore: update changelog from manually invoked CI'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Override HEAD commit
if: ${{ github.event_name != 'workflow_dispatch' }}
uses: EndBug/add-and-commit@v10
uses: EndBug/add-and-commit@v11
with:
commit: -S --amend --no-edit --no-reset-author
message: ${{ github.event.head_commit.message }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,15 +74,15 @@ jobs:
git_commit_gpgsign: true
- name: Push new commit
if: ${{ github.event_name == 'workflow_dispatch' && matrix.python-version == 3.14 }}
uses: EndBug/add-and-commit@v10
uses: EndBug/add-and-commit@v11
with:
commit: -S
message: 'chore: update python-weather from manually invoked CI'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Override HEAD commit
if: ${{ github.event_name != 'pull_request' && github.event_name != 'workflow_dispatch' && matrix.python-version == 3.14 }}
uses: EndBug/add-and-commit@v10
uses: EndBug/add-and-commit@v11
with:
commit: -S --amend --no-edit --no-reset-author
message: ${{ github.event.head_commit.message }}
Expand Down