Skip to content

Do some work

Do some work #13

Workflow file for this run

name: Check branch is rebased
on:
pull_request:
branches:
- main
jobs:
check-rebased:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: check rebased
run: |
git fetch origin
git checkout main
git merge origin/${{ github.head_ref }} --ff-only