From 2f4df30c75d329873a1b63c04f8df3db6096fa84 Mon Sep 17 00:00:00 2001 From: Mihai Parparita Date: Wed, 8 Feb 2023 11:28:16 -0800 Subject: [PATCH] .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 f7b3156f1635d539bc59e5015661b235f80f2b90. Signed-off-by: Mihai Parparita --- .github/workflows/cifuzz.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cifuzz.yml b/.github/workflows/cifuzz.yml index 5d5aed7ce..a75be317a 100644 --- a/.github/workflows/cifuzz.yml +++ b/.github/workflows/cifuzz.yml @@ -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 }}