Skip to content

Update release action (#115) #115

Update release action (#115)

Update release action (#115) #115

Workflow file for this run

name: Rebase
on:
push:
branches:
- main
jobs:
rebase:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Import GPG key
uses: crazy-max/[email protected]
with:
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
passphrase: ${{ secrets.GPG_PASSPHRASE }}
git_user_signingkey: true
git_commit_gpgsign: true
- name: Rebase openHAB branches
run: |
git config --global user.name 'Ethan Dye'
git config --global user.email '[email protected]'
git checkout openHAB
git rebase main
git push --force-with-lease