add number_of_days_in_year and maximum_time_step standard variables; … #71
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Merge changes into fabm-plus and push | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
merge: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Merge into fabm-plus | |
run: | | |
git clone https://${{secrets.FABM_PLUS_PAT}}:@github.com/fabm-model/fabm-plus.git fabm-plus | |
cd fabm-plus | |
git config user.name "Automerge Bot" | |
git config user.email "bot@example.com" | |
git config pull.rebase false | |
git pull https://github.com/fabm-model/fabm.git | |
git push |