Skip to content

Commit

Permalink
updating cron job to 15 min
Browse files Browse the repository at this point in the history
  • Loading branch information
xoscar committed Apr 23, 2024
1 parent dbc09c9 commit 0bf5503
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 12 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/artillery.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
name: Artillery Tests
on:
workflow_dispatch:
# schedule:
# - cron: '0 */1 * * *' # every hour
schedule:
- cron: '*/15 * * * *' # Run every 20 minutes

jobs:
artillery:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cypress-stage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
workflow_dispatch:

schedule:
- cron: '0 */1 * * *' # every hour
- cron: '*/15 * * * *' # Run every 20 minutes

jobs:
cypress-run:
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/cypress.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,8 @@ name: Cypress Tests
on:
# allows the manual trigger
workflow_dispatch:

# schedule:
# - cron: '0 */1 * * *' # every hour
schedule:
- cron: '*/15 * * * *' # Run every 20 minutes

jobs:
cypress-run:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/k6-stage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: K6 Tests Stage
on:
workflow_dispatch:
schedule:
- cron: '0 */1 * * *' # every hour
- cron: '*/15 * * * *' # Run every 20 minutes

jobs:
docker:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/k6.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
name: K6 Tests
on:
workflow_dispatch:
# schedule:
# - cron: '0 */1 * * *' # every hour
schedule:
- cron: '*/15 * * * *' # Run every 20 minutes

jobs:
docker:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/playwright-stage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Playwright Tests Stage
on:
workflow_dispatch:
schedule:
- cron: '0 */1 * * *' # every hour
- cron: '*/15 * * * *' # Run every 20 minutes

jobs:
test:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/playwright.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
name: Playwright Tests
on:
workflow_dispatch:
# schedule:
# - cron: "0 */1 * * *" # every hour
schedule:
- cron: '*/15 * * * *' # Run every 20 minutes

jobs:
test:
Expand Down

0 comments on commit 0bf5503

Please sign in to comment.