ci: Fix news count per page in tests #110
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Automatic Rebase branch feature/new-theme on main | |
on: | |
push: | |
tags: | |
- v2.* | |
workflow_dispatch: | |
jobs: | |
rebase: | |
name: Rebase branch feature/new-theme | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the latest code | |
uses: actions/checkout@v4 | |
with: | |
ref: feature/new-theme | |
token: ${{ secrets.GH_TOKEN }} | |
- name: Configure git | |
run: | | |
git config user.name geokrety-bot | |
git config user.email geokrety-bot@users.noreply.github.com | |
- name: Fetch other branches | |
run: | | |
git fetch | |
git remote -v | |
- name: Rebase branch on main | |
run: | | |
git rebase origin/main -X ours | |
- name: Push branch feature/new-theme | |
run: | | |
git push --force |