Skip to content

Commit

Permalink
add dummy jobs to poem workflows so we stop getting those "Run failed…
Browse files Browse the repository at this point in the history
… at startup" emails
  • Loading branch information
AnthonyMichaelTDM committed May 9, 2024
1 parent d612015 commit 8ed59e0
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/CLI-PoemPostgres-CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,12 @@ concurrency:
group: CI-PP-${{ github.ref }}
cancel-in-progress: true

jobs: {}
jobs:
Dummy-Job:
name: dummy job so workflow is valid
runs-on: ubuntu-latest
steps:
- run: echo "lorem ipsum dolor sit amet"
# naming convention is: [backend]-[database]-[plugins]
# Poem-Postgres-None:
# name: Poem w/ Postgres and no plugins
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/CLI-PoemSqlite-CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,12 @@ concurrency:
group: CI-PS-${{ github.ref }}
cancel-in-progress: true

jobs: {}
jobs:
Dummy-Job:
name: dummy job so workflow is valid
runs-on: ubuntu-latest
steps:
- run: echo "lorem ipsum dolor sit amet"
# # naming convention is: [backend]-[database]-[plugins]
# Poem-Sqlite-None:
# name: Poem w/ Sqlite and no plugins
Expand Down

0 comments on commit 8ed59e0

Please sign in to comment.