How to detect if a specific mob is dead in 1.15

You will need to check for the entity using /execute.

/execute unless entity @e[tag=boss1] run ...

Run the command unless there is an entity with the tag boss1.

When the boss dies, you can put the command to run after the run parameter.