From ea8b896c6c5fd74366ad2433ed274002c97bf23b Mon Sep 17 00:00:00 2001 From: David Anderson Date: Sat, 11 Feb 2023 10:37:26 -0800 Subject: [PATCH] .github/workflows: remove 'ci skip' boilerplate We've never used the "[ci skip]" magic commit header in our history, across all our repos. This seems to be boilerplate we imported years ago and have since been copying around our CI configs. Signed-off-by: David Anderson --- .github/workflows/cross-android.yml | 2 -- .github/workflows/cross-darwin.yml | 2 -- .github/workflows/cross-freebsd.yml | 2 -- .github/workflows/cross-loong64.yml | 2 -- .github/workflows/cross-openbsd.yml | 2 -- .github/workflows/cross-wasm.yml | 2 -- .github/workflows/cross-windows.yml | 2 -- .github/workflows/linux-race.yml | 2 -- .github/workflows/linux.yml | 2 -- .github/workflows/linux32.yml | 2 -- .github/workflows/vm.yml | 3 ++- .github/workflows/windows.yml | 2 -- 12 files changed, 2 insertions(+), 23 deletions(-) diff --git a/.github/workflows/cross-android.yml b/.github/workflows/cross-android.yml index bdcc58bb1..3f8b2c20f 100644 --- a/.github/workflows/cross-android.yml +++ b/.github/workflows/cross-android.yml @@ -17,8 +17,6 @@ jobs: build: runs-on: ubuntu-latest - if: "!contains(github.event.head_commit.message, '[ci skip]')" - steps: - name: Check out code into the Go module directory uses: actions/checkout@v3 diff --git a/.github/workflows/cross-darwin.yml b/.github/workflows/cross-darwin.yml index 0e632e6de..cb224479d 100644 --- a/.github/workflows/cross-darwin.yml +++ b/.github/workflows/cross-darwin.yml @@ -17,8 +17,6 @@ jobs: build: runs-on: ubuntu-latest - if: "!contains(github.event.head_commit.message, '[ci skip]')" - steps: - name: Check out code into the Go module directory uses: actions/checkout@v3 diff --git a/.github/workflows/cross-freebsd.yml b/.github/workflows/cross-freebsd.yml index 077c7f95a..bac7641e0 100644 --- a/.github/workflows/cross-freebsd.yml +++ b/.github/workflows/cross-freebsd.yml @@ -17,8 +17,6 @@ jobs: build: runs-on: ubuntu-latest - if: "!contains(github.event.head_commit.message, '[ci skip]')" - steps: - name: Check out code into the Go module directory uses: actions/checkout@v3 diff --git a/.github/workflows/cross-loong64.yml b/.github/workflows/cross-loong64.yml index 9ee70059a..09f94cddb 100644 --- a/.github/workflows/cross-loong64.yml +++ b/.github/workflows/cross-loong64.yml @@ -17,8 +17,6 @@ jobs: build: runs-on: ubuntu-latest - if: "!contains(github.event.head_commit.message, '[ci skip]')" - steps: - name: Check out code into the Go module directory uses: actions/checkout@v3 diff --git a/.github/workflows/cross-openbsd.yml b/.github/workflows/cross-openbsd.yml index 04ba42422..ecc866781 100644 --- a/.github/workflows/cross-openbsd.yml +++ b/.github/workflows/cross-openbsd.yml @@ -17,8 +17,6 @@ jobs: build: runs-on: ubuntu-latest - if: "!contains(github.event.head_commit.message, '[ci skip]')" - steps: - name: Check out code into the Go module directory uses: actions/checkout@v3 diff --git a/.github/workflows/cross-wasm.yml b/.github/workflows/cross-wasm.yml index d729fea8b..4f067cfd7 100644 --- a/.github/workflows/cross-wasm.yml +++ b/.github/workflows/cross-wasm.yml @@ -17,8 +17,6 @@ jobs: build: runs-on: ubuntu-latest - if: "!contains(github.event.head_commit.message, '[ci skip]')" - steps: - name: Check out code into the Go module directory uses: actions/checkout@v3 diff --git a/.github/workflows/cross-windows.yml b/.github/workflows/cross-windows.yml index 0b80b349e..28d2d53ee 100644 --- a/.github/workflows/cross-windows.yml +++ b/.github/workflows/cross-windows.yml @@ -17,8 +17,6 @@ jobs: build: runs-on: ubuntu-latest - if: "!contains(github.event.head_commit.message, '[ci skip]')" - steps: - name: Check out code into the Go module directory uses: actions/checkout@v3 diff --git a/.github/workflows/linux-race.yml b/.github/workflows/linux-race.yml index f34acdb7c..d5e7fec27 100644 --- a/.github/workflows/linux-race.yml +++ b/.github/workflows/linux-race.yml @@ -17,8 +17,6 @@ jobs: build: runs-on: ubuntu-latest - if: "!contains(github.event.head_commit.message, '[ci skip]')" - steps: - name: Check out code into the Go module directory uses: actions/checkout@v3 diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 0f6588c72..7d2513275 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -17,8 +17,6 @@ jobs: build: runs-on: ubuntu-22.04 - if: "!contains(github.event.head_commit.message, '[ci skip]')" - steps: - name: Check out code into the Go module directory uses: actions/checkout@v3 diff --git a/.github/workflows/linux32.yml b/.github/workflows/linux32.yml index c1f598f78..64ab6258a 100644 --- a/.github/workflows/linux32.yml +++ b/.github/workflows/linux32.yml @@ -17,8 +17,6 @@ jobs: build: runs-on: ubuntu-latest - if: "!contains(github.event.head_commit.message, '[ci skip]')" - steps: - name: Check out code into the Go module directory uses: actions/checkout@v3 diff --git a/.github/workflows/vm.yml b/.github/workflows/vm.yml index a542a82fd..28a1d5da3 100644 --- a/.github/workflows/vm.yml +++ b/.github/workflows/vm.yml @@ -14,7 +14,8 @@ jobs: ubuntu2004-LTS-cloud-base: runs-on: [ self-hosted, linux, vm ] - if: "(github.repository == 'tailscale/tailscale') && !contains(github.event.head_commit.message, '[ci skip]')" + # VM tests run with some privileges, don't let them run on 3p PRs. + if: "github.repository == 'tailscale/tailscale'" steps: - name: Set GOPATH diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index c98ac22a6..22e1f7017 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -17,8 +17,6 @@ jobs: test: runs-on: windows-latest - if: "!contains(github.event.head_commit.message, '[ci skip]')" - steps: - name: Checkout code uses: actions/checkout@v3