1
0
Fork 0
mirror of https://github.com/mealie-recipes/mealie.git synced 2025-08-06 22:15:22 +02:00

chore: cleanup actions and allow reuse + pr template (#1637)

* cleanup actions and allow reuse

* add PR template
This commit is contained in:
Hayden 2022-09-10 10:58:02 -08:00 committed by GitHub
parent 2df791b80b
commit e989651336
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
10 changed files with 226 additions and 216 deletions

37
.github/workflows/nightly.yml vendored Normal file
View file

@ -0,0 +1,37 @@
name: Docker Nightly Production
on:
push:
branches:
- mealie-next
jobs:
backend-tests:
name: "Backend Server Tests"
uses: hay-kot/mealie/.github/workflows/partial-backend.yml@mealie-next
frontend-tests:
name: "Frontend and End-to-End Tests"
uses: hay-kot/mealie/.github/workflows/partial-frontend.yml@mealie-next
build-release:
name: Build Tagged Release
uses: hay-kot/mealie/.github/workflows/partial-builder.yml@mealie-next
needs:
- frontend-tests
- backend-tests
with:
tag: nightly
notify-discord:
name: Notify Discord
needs:
- build-release
runs-on: ubuntu-latest
steps:
- name: Discord notification
env:
DISCORD_WEBHOOK: ${{ secrets.DISCORD_NIGHTLY_WEBHOOK }}
uses: Ilshidur/action-discord@0.3.2
with:
args: "🚀 A New build of mealie:api-nightly and mealie:frontend-nightly is available"