Skip to content

Commit

Permalink
Issue #3448: put command in single quotes
Browse files Browse the repository at this point in the history
as the command contains double quotes
  • Loading branch information
bschmalhofer committed Jun 6, 2024
1 parent d8c83a8 commit 2eb5ee8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docker_image_update_checker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ name: Docker Image Update Checker docker image
# run daily on 11::10 UTC
on:
schedule:
- cron: '10 11 * * *'
- cron: '20 11 * * *'

jobs:
docker:
Expand All @@ -21,4 +21,4 @@ jobs:
image: rotheross/otobo:latest-11_0

- name: Report check result
run: echo "The OTOBO web image needs updating: ${{ steps.check.outputs.needs-updating }}"
run: 'echo "The OTOBO web image needs updating: ${{ steps.check.outputs.needs-updating }}"'

0 comments on commit 2eb5ee8

Please sign in to comment.