mirror of
https://github.com/msberends/AMR.git
synced 2026-03-19 15:42:27 +01:00
Restrict dev-versions and old-tinytest CI to main branch only
Both workflows were triggering on every push to every branch. Narrowed push trigger to [main] so they only run after merging, not on every feature/PR branch push. https://claude.ai/code/session_01XHWLohiSTdZvCutwD7ag2b
This commit is contained in:
@@ -29,7 +29,7 @@
|
|||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches: '**'
|
branches: [main]
|
||||||
schedule:
|
schedule:
|
||||||
# also run a schedule everyday at 1 AM.
|
# also run a schedule everyday at 1 AM.
|
||||||
# this is to check that all dependencies are still available (see R/zzz.R)
|
# this is to check that all dependencies are still available (see R/zzz.R)
|
||||||
|
|||||||
4
.github/workflows/check-old-tinytest.yaml
vendored
4
.github/workflows/check-old-tinytest.yaml
vendored
@@ -29,8 +29,8 @@
|
|||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
# only run after a git push on any branch in this repo
|
# only run after a git push on the main branch
|
||||||
branches: '**'
|
branches: [main]
|
||||||
|
|
||||||
name: check-old
|
name: check-old
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user