Compare commits

..

2 Commits

Author SHA1 Message Date
perl_d 7463116c95 fix: remove merge conflicts
CI for bec_testing_plugin / test (pull_request) Successful in 30s
CI for bec_testing_plugin / test (push) Successful in 28s
2026-05-20 11:09:36 +02:00
perl_d fbc693c3a8 Update repo with template version v1.4.0
CI for bec_testing_plugin / test (pull_request) Failing after 6s
CI for bec_testing_plugin / test (push) Failing after 5s
2026-05-20 11:05:41 +02:00
2 changed files with 6 additions and 24 deletions
+1 -1
View File
@@ -2,7 +2,7 @@
# It is needed to track the repo template version, and editing may break things.
# This file will be overwritten by copier on template updates.
_commit: v1.3.2
_commit: v1.4.0
_src_path: https://github.com/bec-project/plugin_copier_template.git
make_commit: true
project_name: bec_testing_plugin
+5 -23
View File
@@ -6,50 +6,33 @@ permissions:
pull-requests: write
jobs:
<<<<<<< before updating
test:
runs-on: ubuntu-latest
=======
create_update_branch_and_pr:
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
>>>>>>> after updating
steps:
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
<<<<<<< before updating
- name: Install tools
run: |
pip install copier
- name: Checkout
uses: actions/checkout@v4
- name: Perform update
- name: Create virtualenv
run: |
branch="chore/update-template-$(python -m uuid)"
git checkout -b $branch
msg = $(copier update --trust --defaults --conflict inline 2>&1 | sed -n 1p)
git add -A
git diff-index --quiet HEAD || git commit -a -m $msg
git push -u origin $branch
=======
python -m virtualenv .venv
- name: Install tools
run: |
source .venv/bin/activate
pip install copier PySide6 bec_lib
- name: Checkout
uses: actions/checkout@v4
- name: Perform update
run: |
source .venv/bin/activate
git config --global user.email "bec_ci_staging@psi.ch"
git config --global user.name "BEC automated CI"
@@ -85,4 +68,3 @@ jobs:
\"head\": \"$(echo $branch)\",
\"base\": \"main\"
}"
>>>>>>> after updating