Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions .github/workflows/pull_request_automation.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,17 @@
name: CI

# Trigger the workflow on push to pull request, as well as scheduled every 15 minutes
on:
pull_request:
branches:
- main
- develop

# discard previous execution if you commit to a branch that is already running
# Schedule to run every 15 minutes
schedule:
- cron: '*/15 * * * *' # Runs every 15 minutes

# Prevent multiple executions on the same branch
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
Expand Down Expand Up @@ -43,7 +48,6 @@ jobs:
node_versions: >-
["20"]


backend-tests:
needs: detect-changes
if: ${{ needs.detect-changes.outputs.backend > 0 }}
Expand Down
Loading
Loading