From f295c2c6c4a804ce43712fa1ed05f1df114116f1 Mon Sep 17 00:00:00 2001 From: ViktorJp <97465574+ViktorJp@users.noreply.github.com> Date: Tue, 20 Feb 2024 16:05:29 -0500 Subject: [PATCH 1/2] Update changelog.txt --- changelog.txt | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/changelog.txt b/changelog.txt index 8706b4c..d06ac0c 100644 --- a/changelog.txt +++ b/changelog.txt @@ -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, From 7ab0d35d7e04c545f3782328fd78c8ae9763a132 Mon Sep 17 00:00:00 2001 From: ViktorJp <97465574+ViktorJp@users.noreply.github.com> Date: Tue, 20 Feb 2024 20:43:20 -0500 Subject: [PATCH 2/2] Create Check pull request source branch.yml --- .../Check pull request source branch.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/Check pull request source branch.yml diff --git a/.github/workflows/Check pull request source branch.yml b/.github/workflows/Check pull request source branch.yml new file mode 100644 index 0000000..9313148 --- /dev/null +++ b/.github/workflows/Check pull request source branch.yml @@ -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