:wave: Hi guys :slightly_smiling_face: Question re...
# ask-community
y
👋 Hi guys 🙂 Question regarding dagster jobs: Is it possible to add tags/metadata to a job run dynamically at runtime?
z
You should be able to do something like
Copy code
@op
def dummy_op(context: OpExecutionContext):
    context.instance.add_run_tags(run_id=context.run_id, new_tags={"tag": "value"}
dagster bot responded by community 2
y
@Roei Jacobovich in case you were wondering
👍 1