Compare commits

..

12 Commits

Author SHA1 Message Date
bec-gitea 8a1ad56730 Update repo with template version v1.3.1 2026-05-19 14:12:26 +00:00
perl_d 6296b3d809 ...
CI for bec_testing_plugin / test (push) Successful in 29s
2026-05-19 16:11:15 +02:00
perl_d 02db4aca5c debug
CI for bec_testing_plugin / test (push) Successful in 29s
2026-05-19 16:09:36 +02:00
perl_d c66182ce73 use venv
CI for bec_testing_plugin / test (push) Successful in 31s
2026-05-19 16:07:36 +02:00
perl_d 679da87ca2 use selected python to pip install
CI for bec_testing_plugin / test (push) Successful in 31s
2026-05-19 16:01:31 +02:00
perl_d 89d6e9148f double check bec_lib installation
CI for bec_testing_plugin / test (push) Successful in 30s
2026-05-19 15:54:17 +02:00
perl_d f51e7dbd5b test set version one back
CI for bec_testing_plugin / test (push) Successful in 29s
2026-05-19 15:45:31 +02:00
perl_d 60f67f7c63 test tee...
CI for bec_testing_plugin / test (push) Successful in 32s
2026-05-19 15:40:51 +02:00
perl_d 8d7713aae2 test...
CI for bec_testing_plugin / test (push) Successful in 30s
2026-05-19 15:36:29 +02:00
perl_d dceb5bf029 Update repo with template version v1.3.1 2026-05-19 15:32:17 +02:00
perl_d 633552307e fix: resolve conflicts
CI for bec_testing_plugin / test (push) Successful in 31s
2026-05-19 15:30:41 +02:00
perl_d 0c5a9861a0 Update repo with template version v1.3.0
CI for bec_testing_plugin / test (push) Failing after 5s
2026-05-19 15:27:59 +02:00
2 changed files with 12 additions and 8 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.4.0
_commit: v1.3.1
_src_path: https://github.com/bec-project/plugin_copier_template.git
make_commit: true
project_name: bec_testing_plugin
+11 -7
View File
@@ -1,4 +1,4 @@
name: Create template upgrade PR for bec_testing_plugin
name: Create template upgrade PR for {{ project_name }}
on:
workflow_dispatch:
@@ -16,19 +16,23 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
python-version: "3.12"
- name: Checkout
uses: actions/checkout@v4
- name: Create virtualenv
run: |
python -m virtualenv .venv
python -m virtualenv .venv
- name: Install tools
run: |
source .venv/bin/activate
pip install copier PySide6 bec_lib
echo $(which python)
echo $(python -m pip list)
python -m pip install copier PySide6 bec_lib
echo $(which copier)
python -c "import bec_lib; print(bec_lib.__file__)"
- name: Perform update
run: |
@@ -41,7 +45,7 @@ jobs:
git checkout -b $branch
echo "Running copier update..."
copier update --trust --defaults --conflict inline 2>&1 | tee copier.log
python -m copier update --trust --defaults --conflict inline 2>&1 | tee copier.log
status=${PIPESTATUS[0]}
output="$(cat copier.log)"
echo $output
@@ -59,8 +63,8 @@ jobs:
fi
git push -u origin $branch
curl -X POST "https://gitea.psi.ch/api/v1/repos/${{ gitea.repository }}/pulls" \
-H "Authorization: token ${{ secrets.CI_REPO_WRITE }}" \
curl -X POST "https://gitea.psi.ch/api/v1/repos/{{ "${{ gitea.repository }}" }}/pulls" \
-H "Authorization: token {{ "${{ secrets.CI_REPO_WRITE }}" }}" \
-H "Content-Type: application/json" \
-d "{
\"title\": \"Template: $(echo $msg)\",