.github/workflows: re-enable CIFuzz job

Having an empty `on` spec results in the job still running, but it
immediately fails with a "No jobs were run" message.

Go back to the original `on: [pull_request]` spec, and disable the
workflow in the GitHub UI instead.

This reverts commit f7b3156f16.

Signed-off-by: Mihai Parparita <mihai@tailscale.com>
pull/7235/head
Mihai Parparita 1 year ago committed by Mihai Parparita
parent 62f4df3257
commit 2f4df30c75

@ -1,5 +1,5 @@
name: CIFuzz
on: [] # was: [pull_request], but disabled in https://github.com/tailscale/tailscale/pull/7156
on: [pull_request]
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}

Loading…
Cancel
Save