add new action that runs when PR is merged
All checks were successful
Unit Testing / test (3.11) (pull_request) Successful in 46s
Unit Testing / test (3.10) (pull_request) Successful in 50s
Unit Testing / test (3.8) (pull_request) Successful in 46s
Unit Testing / test (3.12) (pull_request) Successful in 50s
Unit Testing / test (3.9) (pull_request) Successful in 50s
Pull Request Merged / autoupdate_minor (pull_request) Successful in 4s

This commit is contained in:
2026-03-02 11:58:30 +01:00
parent 4abe08caa2
commit 2787f53747
3 changed files with 19 additions and 2 deletions

17
.github/workflows/merge_PR.yml vendored Normal file
View File

@@ -0,0 +1,17 @@
name: Pull Request Merged
on:
pull_request:
types: [closed]
jobs:
autoupdate_minor:
if: github.event.pull_request.merged == true
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install dependencies
run: |
python -c "import eos; print(eos.__version__)"

View File

@@ -28,7 +28,7 @@ jobs:
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
fail-fast: false
fail-fast: true
steps:
- name: Checkout LFS objects

View File

@@ -2,5 +2,5 @@
Package to handle data redction at AMOR instrument to be used by __main__.py script.
"""
__version__ = '3.2.3-2'
__version__ = '3.2.4'
__date__ = '2026-02-27'