From f279a14693f64a3d733bca723f0255fac559d904 Mon Sep 17 00:00:00 2001 From: Valentin Tolmer Date: Mon, 11 Sep 2023 17:30:14 +0200 Subject: [PATCH] github: add release bot --- .github/workflows/release-bot.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/release-bot.yml diff --git a/.github/workflows/release-bot.yml b/.github/workflows/release-bot.yml new file mode 100644 index 0000000..389ac5d --- /dev/null +++ b/.github/workflows/release-bot.yml @@ -0,0 +1,20 @@ +name: Release Bot + +on: + release: + types: [published] + +jobs: + comment: + runs-on: ubuntu-latest + permissions: + issues: write + pull-requests: write + steps: + - uses: nflaig/release-comment-on-pr@master + with: + token: ${{ secrets.RELEASE_BOT_TOKEN }} + message: | + Thank you everyone for the contribution! + This feature is now available in the latest release, [${releaseTag}](${releaseUrl}). + You can support LLDAP by starring our repo, contributing some configuration examples and becoming a sponsor.