From 43de7b964378114370707186ea1afa72d9322808 Mon Sep 17 00:00:00 2001 From: Jonas Dech Date: Wed, 3 Jan 2024 11:31:07 +0100 Subject: [PATCH] try env variable --- .github/workflows/pycram-ci.yml | 3 ++- src/pycram/orm/base.py | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pycram-ci.yml b/.github/workflows/pycram-ci.yml index 4a598fba0..1246fd7ff 100644 --- a/.github/workflows/pycram-ci.yml +++ b/.github/workflows/pycram-ci.yml @@ -94,7 +94,8 @@ jobs: sudo pip3 install pytest - name: print base_ref run : | - echo ${{ github.base_ref }} + echo $GITHUB_REPOSITORY + echo $GITHUB_REF_NAME - name: start roscore run: | roslaunch pycram ik_and_description.launch & diff --git a/src/pycram/orm/base.py b/src/pycram/orm/base.py index ef8bbd1b5..1304f7efc 100644 --- a/src/pycram/orm/base.py +++ b/src/pycram/orm/base.py @@ -126,7 +126,7 @@ def pose(self): return relationship(Pose.__tablename__, init=False) -class ProcessMeta1Data(MappedAsDataclass, _Base): +class ProcessMetaData(MappedAsDataclass, _Base): """ ProcessMetaData stores information about the context of this experiment.