Skip to content

Commit

Permalink
fix(ci): Fix some workflows if the changes job outputs nothing
Browse files Browse the repository at this point in the history
Signed-off-by: Jonas <[email protected]>
  • Loading branch information
mejo- committed Nov 7, 2023
1 parent ad0632e commit 3ad0d65
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/app-upgrade-mysql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ jobs:
permissions:
contents: none
runs-on: ubuntu-latest
needs: app-upgrade-mysql
needs: [changes, app-upgrade-mysql]

if: always()

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/app-upgrade-postgres.yml
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ jobs:
permissions:
contents: none
runs-on: ubuntu-latest
needs: app-upgrade-pgsql
needs: [changes, app-upgrade-pgsql]

if: always()

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/behat-sqlite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ permissions:
contents: read

concurrency:
group: behat-sqlite${{ github.head_ref || github.run_id }}
group: behat-sqlite-${{ github.head_ref || github.run_id }}
cancel-in-progress: true

env:
Expand Down

0 comments on commit 3ad0d65

Please sign in to comment.