Merge branch 'staging'

This commit is contained in:
Moritz Utcke
2025-04-28 13:29:59 -03:00
2 changed files with 13 additions and 1 deletions

View File

@@ -50,3 +50,15 @@ jobs:
-X POST \
-d "{\"content\": \"🚨 Auto-Merge fehlgeschlagen! Bitte manuell prüfen: https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}\"}" \
${{ secrets.DISCORD_WEBHOOK_URL }}
notify_success:
needs: merge
if: success()
runs-on: ubuntu-latest
steps:
- name: Send Discord notification on success
run: |
curl -H "Content-Type: application/json" \
-X POST \
-d "{\"content\": \"✅ Auto-Merge ausgeführt! Ergebnis jetzt auf [GitHub](https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}) und [online-energieausweis.org](https://online-energieausweis.org) einsehen.\"}" \
${{ secrets.DISCORD_WEBHOOK_URL }}

View File

@@ -9,7 +9,7 @@ on:
jobs:
check-pr:
runs-on: ubuntu-latest
name: Validate Pull Request Source
name: Validate Pull Request Sources
steps:
- name: Prevent dev merges
run: |