From de61cc65c39b08a8fc12ceccd784c51c8465549c Mon Sep 17 00:00:00 2001 From: Daniel Civit Date: Wed, 27 May 2026 09:43:08 +0200 Subject: [PATCH 1/2] DAVAMS-1028: Add GitHub Action to push a notification about a release on MS Teams Channel --- .github/workflows/notify-teams.yml | 21 +++++++++++++++++++++ CHANGELOG.md | 2 -- 2 files changed, 21 insertions(+), 2 deletions(-) create mode 100644 .github/workflows/notify-teams.yml diff --git a/.github/workflows/notify-teams.yml b/.github/workflows/notify-teams.yml new file mode 100644 index 0000000..1699d99 --- /dev/null +++ b/.github/workflows/notify-teams.yml @@ -0,0 +1,21 @@ +name: Notify Teams on Release + +on: + push: + tags: + - '*' + pull_request: + types: [opened, synchronize] + +jobs: + notify: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + with: + fetch-depth: 0 + + - uses: MultiSafepay/microsoft-teams-release-notifications@main + with: + webhook_url: ${{ secrets.MSTEAMS_WEBHOOK }} + changelog_path: "./CHANGELOG.md" \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 9c8c409..8670a8e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,8 +5,6 @@ All notable changes to the MultiSafepay Python SDK will be documented in this fi The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [Unreleased] - ## [3.0.0] - 2026-03-05 ### Added From 25db652a38759b4f7d7b8a1548c45e02382dc8d6 Mon Sep 17 00:00:00 2001 From: Daniel Civit Date: Wed, 27 May 2026 09:44:47 +0200 Subject: [PATCH 2/2] DAVAMS-1028: Add GitHub Action to push a notification about a release on MS Teams Channel --- .github/workflows/notify-teams.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/notify-teams.yml b/.github/workflows/notify-teams.yml index 1699d99..9477f4e 100644 --- a/.github/workflows/notify-teams.yml +++ b/.github/workflows/notify-teams.yml @@ -4,8 +4,6 @@ on: push: tags: - '*' - pull_request: - types: [opened, synchronize] jobs: notify: