.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>
This commit is contained in:
Mihai Parparita 2023-02-08 11:28:16 -08:00 committed by Mihai Parparita
parent 62f4df3257
commit 2f4df30c75

View File

@ -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 }}