Skip to content

Commit

Permalink
ci: remove double push/pr ci runs
Browse files Browse the repository at this point in the history
  • Loading branch information
lishaduck committed Oct 31, 2024
1 parent 154aa81 commit 996df75
Showing 1 changed file with 22 additions and 1 deletion.
23 changes: 22 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,28 @@

name: CI

on: [push, pull_request]
on:
# Run on pushes to the default branch.
push:
branches:
- main

# Run on all PRs.
pull_request:
types:
- opened
- synchronize
- reopened

# Support merge queues.
merge_group:

# Run on a schedule.
schedule:
- cron: "0 7 * * 1" # Every Monday at 9 in the morning CET

# Allow running this workflow manually from the Actions tab.
workflow_dispatch:

defaults:
run:
Expand Down

0 comments on commit 996df75

Please sign in to comment.