.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 <danderson@tailscale.com>
main
David Anderson 3 years ago committed by Dave Anderson
parent 11fafdac8f
commit ea8b896c6c
  1. 2
      .github/workflows/cross-android.yml
  2. 2
      .github/workflows/cross-darwin.yml
  3. 2
      .github/workflows/cross-freebsd.yml
  4. 2
      .github/workflows/cross-loong64.yml
  5. 2
      .github/workflows/cross-openbsd.yml
  6. 2
      .github/workflows/cross-wasm.yml
  7. 2
      .github/workflows/cross-windows.yml
  8. 2
      .github/workflows/linux-race.yml
  9. 2
      .github/workflows/linux.yml
  10. 2
      .github/workflows/linux32.yml
  11. 3
      .github/workflows/vm.yml
  12. 2
      .github/workflows/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

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

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

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

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

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

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

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

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

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

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

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

Loading…
Cancel
Save