Xilinx / mlir-aie

An MLIR-based toolchain for AMD AI Engine-enabled devices.
Other
260 stars 76 forks source link

Update concurrency group labels #1572

Closed fifield closed 2 weeks ago

fifield commented 2 weeks ago

We seem to get occasional conflicts between checks for merge_group and checks on push to main. Because some of the merge_group checks are not required for merge, they might still be running when the push to main checks run (post-merge), resulting in cancellations because they share the same concurrency group name. This PR add ${{ github.event_name }} to the concurrency group to attempt to distinguish between the two. Another solution might be to remove the push to main checks, as they could be redundant.