Skip to content

Commit

Permalink
Merge pull request #12 from ViktorJp/main
Browse files Browse the repository at this point in the history
Update
  • Loading branch information
ViktorJp authored Feb 21, 2024
2 parents 468808e + 7ab0d35 commit fd9b81a
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/Check pull request source branch.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Check pull request source branch
on:
pull_request_target:
types:
- opened
- reopened
- synchronize
- edited
jobs:
check-branches:
runs-on: $default-branch
steps:
- name: Check branches
run: |
if [ ${{ github.head_ref }} != "dev" ] && [ ${{ github.base_ref }} == "main" ]; then
echo "Merge requests to main branch are only allowed from dev branch."
exit 1
fi
9 changes: 9 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
v1.5.7 - (TBA)
- PATCH: Thanks to @Martinski, some significant improvements were made to the email notification feature
and functionality. HTML emails are now being sent by default, and have been tested using all major email
providers. A new title header is now visible in the email, as well as the ability to bold characters.
Looking at adding a secondary email address in the near future as that capability has now been built-in
as well, which could optionally be used for text messaging.
- PATCH: Noticed that when the "scheduled backup" item was set to "No", that one of its sub-items continued
to stay active. Now, when this item is set to no, both the time and backup modes are grayed out.

v1.5.6 - (February 18, 2024)
- PATCH: Thanks for @ExtremeFiretop's suggestion to provide guidance and automation to exclude the backup
folder if EXT USB backups are backing up to the same EXT USB. Knowing that his is a risky scenario,
Expand Down

0 comments on commit fd9b81a

Please sign in to comment.