1
0
mirror of https://github.com/msberends/AMR.git synced 2026-03-19 13:42:25 +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:
Claude
2026-03-18 23:09:02 +00:00
parent 11c175ae19
commit eae14d44bf
2 changed files with 3 additions and 3 deletions

View File

@@ -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)

View File

@@ -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