Skip to content

Commit

Permalink
Reduce the situations when test actions will run
Browse files Browse the repository at this point in the history
  • Loading branch information
ColdHeat committed Oct 7, 2023
1 parent 3e6dfc8 commit ba6d12b
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 3 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/mysql.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
---
name: CTFd MySQL CI

on: [push, pull_request]
on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
build:
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/postgres.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
---
name: CTFd Postgres CI

on: [push, pull_request]
on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
build:
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/sqlite.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
---
name: CTFd SQLite CI

on: [push, pull_request]
on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
build:
Expand Down

0 comments on commit ba6d12b

Please sign in to comment.