For animations that are outside the locomotions like in your case, I recommend using anim montages because it would be unnecessary to have it as a state in your anim blueprint if it’s already gonna be played only once.
To turn an existing animation into a montage, you should right click on your asset in the content browser, navigate to the “Create” option and select the “Create Anim Montage” button. Then, navigate to your anim blueprint’s main anim graph, the one you can access by clicking on the “Anim Graph” text on top of the screen and below the tabs, and not the other graphs inside your locomotions. Right click on an open space, search for “Default” and get the default slot of your character. It should be a grey node. Then plug it’s both input and output execution pins accordingly. This was a necessary step in order to make the anim montages work.
To play the anim montage, navigate to your character blueprint’s event graph and get a “Play Montage” node. Select an anim montage to play from the dropdown menu inside the node and plug the node to the Event Begin Play node.
And finally, to make the character start running after the animation is complete, you can simply create a bool type variable and set it to true after the “On Completed” pin of the Play Montage node, and bind the condition to allow running only if that variable is true by using a branch node.
Hope this helps!