Vinícius Peixoto
Vinícius Peixoto
Hi! Yes, I'm working on this right now and planning to send a patch very soon. :slightly_smiling_face:
Hi again! > Finally, would be nice to have this easily visible when making PRs. I don't know if GitHub actions makes it easy to automatically give some feedback or...
Also, I spent way longer than I'd like to admit trying to figure out a way to get the bot to post the `flamegraph` heatmap SVG as an image in...
It does, but AFAIK it only works when you manually add a file through the browser, similarly to [this](https://gist.github.com/vinkla/dca76249ba6b73c5dd66a4e986df4c8d) (I don't think we can reproduce this in CI/CD since it...
Also, this is the `compose.yaml` I'm using to deploy the server: ``` services: tf2-competitive: container_name: tf2 image: "ghcr.io/melkortf/tf2-competitive" env_file: "./.env" network_mode: host volumes: - "./maps:/home/tf2/server/tf/maps" ```
Actually, I just managed to make it work by applying the following port config in `compose.yml`, instead of using `network_mode: host`: ``` services: tf2-competitive: container_name: tf2 image: "ghcr.io/melkortf/tf2-competitive" env_file: "./.env"...