Compare commits

..

2 Commits

Author SHA1 Message Date
44eb060410 Merge pull request 'Commit 2' (#1) from dev into release
Reviewed-on: #1
2023-09-26 09:24:15 +02:00
d923febdae Commit 2 2023-09-26 09:23:41 +02:00
2 changed files with 25 additions and 1 deletions

View File

@ -0,0 +1,24 @@
name: Merge Release to Master
on:
push:
branches:
- release
jobs:
merge-branch:
runs-on: ubuntu-latest
steps:
- name: Checkout Release Branch
uses: actions/checkout@v2
with:
ref: release
fetch-depth: 0 # fetch full history for all tags and branches
- name: Merge Release into Master
run: |
git config user.email gitea-actions
git config user.name noreply+github-actions@springer-dl.de
git merge origin/master -m "automated merge" \
--no-ff
git push origin release:master

View File

@ -1,2 +1,2 @@
# action-test READ ME
# action-test READ ME 1