We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e6e3c32 commit d971281Copy full SHA for d971281
2 files changed
.github/workflows/cd.yml
@@ -4,6 +4,7 @@ on:
4
push:
5
branches:
6
- main
7
+ - "releases/**"
8
pull_request:
9
workflow_dispatch:
10
.github/workflows/test-docker-compose.yml
@@ -3,7 +3,7 @@ name: Test whether the dockerized version works
3
on:
- branches: [main]
+ branches: [main, releases/**]
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
@@ -25,6 +25,5 @@ jobs:
25
- name: Verify that dockerized timetables API is up and running
26
uses: HSLdevcom/jore4-tools/github-actions/healthcheck@healthcheck-v1
27
with:
28
- command:
29
- "curl --fail http://localhost:3009/actuator/health --output
+ command: "curl --fail http://localhost:3009/actuator/health --output
30
/dev/null --silent"
0 commit comments