Skip to content

Commit 984e4ad

Browse files
authored
Merge pull request #119 from falconstryker/devel
adding ability to do github actions on merge/PR to main as well as devel
2 parents a68cf59 + a9fe7d2 commit 984e4ad

File tree

7 files changed

+14
-14
lines changed

7 files changed

+14
-14
lines changed

.github/workflows/marscalendar_test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ concurrency:
66
on:
77
# Trigger the workflow on push to devel branch
88
push:
9-
branches: [ devel ]
9+
branches: [ devel, main ]
1010
paths:
1111
- 'bin/MarsCalendar.py'
1212
- 'tests/test_marscalendar.py'
@@ -15,7 +15,7 @@ on:
1515
workflow_dispatch:
1616
# Trigger on pull requests that modify MarsCalendar or tests
1717
pull_request:
18-
branches: [ devel ]
18+
branches: [ devel, main ]
1919
paths:
2020
- 'bin/MarsCalendar.py'
2121
- 'tests/test_marscalendar.py'

.github/workflows/marsfiles_test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ concurrency:
66
on:
77
# Trigger the workflow on push to devel branch
88
push:
9-
branches: [ devel ]
9+
branches: [ devel, main ]
1010
paths:
1111
- 'bin/MarsFiles.py'
1212
- 'tests/test_marsfiles.py'
@@ -16,7 +16,7 @@ on:
1616
workflow_dispatch:
1717
# Trigger on pull requests that modify relevant files
1818
pull_request:
19-
branches: [ devel ]
19+
branches: [ devel, main ]
2020
paths:
2121
- 'bin/MarsFiles.py'
2222
- 'tests/test_marsfiles.py'

.github/workflows/marsformat_test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ concurrency:
66
on:
77
# Trigger the workflow on push to devel branch
88
push:
9-
branches: [ devel ]
9+
branches: [ devel, main ]
1010
paths:
1111
- 'bin/MarsFormat.py'
1212
- 'tests/test_marsformat.py'
@@ -15,7 +15,7 @@ on:
1515
workflow_dispatch:
1616
# Trigger on pull requests that modify MarsFormat or tests
1717
pull_request:
18-
branches: [ devel ]
18+
branches: [ devel, main ]
1919
paths:
2020
- 'bin/MarsFormat.py'
2121
- 'tests/test_marsformat.py'

.github/workflows/marsinterp_test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ concurrency:
66
on:
77
# Trigger the workflow on push to devel branch
88
push:
9-
branches: [ devel ]
9+
branches: [ devel, main ]
1010
paths:
1111
- 'bin/MarsInterp.py'
1212
- 'tests/test_marsinterp.py'
@@ -16,7 +16,7 @@ on:
1616
workflow_dispatch:
1717
# Trigger on pull requests that modify relevant files
1818
pull_request:
19-
branches: [ devel ]
19+
branches: [ devel, main ]
2020
paths:
2121
- 'bin/MarsInterp.py'
2222
- 'tests/test_marsinterp.py'

.github/workflows/marsplot_test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ concurrency:
66
on:
77
# Trigger the workflow on push to devel branch
88
push:
9-
branches: [ devel ]
9+
branches: [ devel, main ]
1010
paths:
1111
- 'bin/MarsPlot.py'
1212
- 'tests/test_marsplot.py'
@@ -15,7 +15,7 @@ on:
1515
workflow_dispatch:
1616
# Trigger on pull requests that modify MarsPlot or tests
1717
pull_request:
18-
branches: [ devel ]
18+
branches: [ devel, main ]
1919
paths:
2020
- 'bin/MarsPlot.py'
2121
- 'tests/test_marsplot.py'

.github/workflows/marspull_test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ concurrency:
66
on:
77
# Trigger the workflow on push to devel branch
88
push:
9-
branches: [ devel ]
9+
branches: [ devel, main ]
1010
paths:
1111
- 'bin/MarsPull.py'
1212
- 'tests/test_marspull.py'
@@ -15,7 +15,7 @@ on:
1515
workflow_dispatch:
1616
# Trigger on pull requests that modify MarsFormat or tests
1717
pull_request:
18-
branches: [ devel ]
18+
branches: [ devel, main ]
1919
paths:
2020
- 'bin/MarsPull.py'
2121
- 'tests/test_marspull.py'

.github/workflows/marsvars_test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ concurrency:
66
on:
77
# Trigger the workflow on push to devel branch
88
push:
9-
branches: [ devel ]
9+
branches: [ devel, main ]
1010
paths:
1111
- 'bin/MarsVars.py'
1212
- 'tests/test_marsvars.py'
@@ -18,7 +18,7 @@ on:
1818
workflow_dispatch:
1919
# Trigger on pull requests that modify relevant files
2020
pull_request:
21-
branches: [ devel ]
21+
branches: [ devel, main ]
2222
paths:
2323
- 'bin/MarsVars.py'
2424
- 'tests/test_marsvars.py'

0 commit comments

Comments
 (0)