From 15d776c7909a7d99cff747a8a1e678393091516a Mon Sep 17 00:00:00 2001 From: "Marcel S. Henselin" Date: Fri, 17 Apr 2026 15:35:58 +0200 Subject: [PATCH] chore: REDAME --- README.md | 31 +++++++++++++------------------ 1 file changed, 13 insertions(+), 18 deletions(-) diff --git a/README.md b/README.md index d305f27..b753b09 100644 --- a/README.md +++ b/README.md @@ -13,23 +13,18 @@ jobs: runs-on: ubuntu-latest steps: - - name: Checkout - uses: actions/checkout@v6 - - - name: Get commit hash - if: ${{ always() }} - run: echo "::set-output name=sha8::$(echo ${GITHUB_SHA} | cut -c1-8)" - id: slug - - - name: Chat Setup - if: ${{ always() }} - uses: https://stackit-solutions.git.onstackit.cloud/actions/notify@v0 - with: - project: ${{ github.repository }} - commit: ${{ steps.slug.outputs.sha8 }} - branch: ${{ github.ref }} - status: ${{ job.status }} - actionid: ${{ github.repository }}/runs/${{ github.run_id }} - webhook: "https://chat.googleapis.com/v1/spaces/AAAAzPcAy4s/messages?key=AIzaSyDdI0hCZtE6vySjMm-WEfRq3CPzqKqqsHI&token=MmdzluicdrdkyUAV_QwB6BzlLcIhbfrwNzxVrEllaec%3D&threadKey=git-commit" + # ... all your steps + - name: Sample Chat Message + if: ${{ always() }} # runs als after fails + uses: https://stackit-solutions.git.onstackit.cloud/actions/notify@v0.1.2 + with: + title: "[START] sample test (${{ forgejo.run_number }})" + author: ${{ forgejo.actor }} + giturl: ${{ forgejo.server_url }} + iconslug: instacart # optional + # status: ${{ job.status }} # optional + actionid: ${{ forgejo.run_number }} + webhook: "${{ secrets.WEBHOOK_URL }}" + event_body: "This is a sample TEXT
with a new line" # optional ```