Skip to content

Commit 786caeb

Browse files
committed
chore: disable GHA temporarily
1 parent 05bf450 commit 786caeb

File tree

8 files changed

+118
-118
lines changed

8 files changed

+118
-118
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
name: "CodeQL"
22

3-
on:
4-
# Run the analysis once every 24 hours. The actual time does not matter
5-
# that much, start with a time that allows for easier troubleshooting.
6-
schedule:
7-
- cron: '00 22 * * *'
3+
# on:
4+
# # Run the analysis once every 24 hours. The actual time does not matter
5+
# # that much, start with a time that allows for easier troubleshooting.
6+
# schedule:
7+
# - cron: '00 22 * * *'
88

99
jobs:
1010
analyze:

.github/workflows/external-account-integration.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
name: "External Account Integration"
22

3-
on:
4-
workflow_call:
5-
inputs:
6-
checkout-ref:
7-
required: true
8-
description: "The ref we want to compile"
9-
type: string
3+
# on:
4+
# workflow_call:
5+
# inputs:
6+
# checkout-ref:
7+
# required: true
8+
# description: "The ref we want to compile"
9+
# type: string
1010

1111
permissions:
1212
contents: read

.github/workflows/macos-bazel.yml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
name: macOS-Bazel-Builds
22

3-
on:
4-
workflow_call:
5-
inputs:
6-
checkout-ref:
7-
required: true
8-
description: "The ref we want to compile"
9-
type: string
10-
bazel-cache-mode:
11-
required: true
12-
description: "READ_WRITE or READ_ONLY"
13-
type: string
14-
execute-integration-tests:
15-
required: true
16-
description: "Integration tests require credentials."
17-
type: boolean
3+
# on:
4+
# workflow_call:
5+
# inputs:
6+
# checkout-ref:
7+
# required: true
8+
# description: "The ref we want to compile"
9+
# type: string
10+
# bazel-cache-mode:
11+
# required: true
12+
# description: "READ_WRITE or READ_ONLY"
13+
# type: string
14+
# execute-integration-tests:
15+
# required: true
16+
# description: "Integration tests require credentials."
17+
# type: boolean
1818

1919
permissions:
2020
contents: read

.github/workflows/macos-cmake.yml

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,28 @@
11
name: macOS-CMake-Builds
22

3-
on:
4-
workflow_call:
5-
inputs:
6-
checkout-ref:
7-
required: true
8-
description: "The ref we want to compile"
9-
type: string
10-
full-matrix:
11-
required: true
12-
description: "Build the full matrix"
13-
type: boolean
14-
sccache-mode:
15-
required: true
16-
description: "READ_WRITE or DISABLED"
17-
type: string
18-
vcpkg-cache-mode:
19-
required: true
20-
description: "read or readwrite"
21-
type: string
22-
execute-integration-tests:
23-
required: true
24-
description: "Integration tests require credentials."
25-
type: boolean
3+
# on:
4+
# workflow_call:
5+
# inputs:
6+
# checkout-ref:
7+
# required: true
8+
# description: "The ref we want to compile"
9+
# type: string
10+
# full-matrix:
11+
# required: true
12+
# description: "Build the full matrix"
13+
# type: boolean
14+
# sccache-mode:
15+
# required: true
16+
# description: "READ_WRITE or DISABLED"
17+
# type: string
18+
# vcpkg-cache-mode:
19+
# required: true
20+
# description: "read or readwrite"
21+
# type: string
22+
# execute-integration-tests:
23+
# required: true
24+
# description: "Integration tests require credentials."
25+
# type: boolean
2626

2727
permissions:
2828
contents: read

.github/workflows/test-runner-untrusted.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,17 @@ name: "gha: macOS & Windows Untrusted"
22

33
# Build on pull requests and pushes to `main`. The PR builds will be
44
# non-blocking for now, but that is configured elsewhere.
5-
on:
6-
# Start the build in the context of the target branch. This is considered
7-
# "safe", as the workflow files are already committed. These types of builds
8-
# have access to the secrets in the build, which we need to use the remote
9-
# caches (Bazel and sccache).
10-
pull_request:
11-
types:
12-
- opened
13-
- synchronize
14-
- reopened
15-
workflow_dispatch:
5+
# on:
6+
# # Start the build in the context of the target branch. This is considered
7+
# # "safe", as the workflow files are already committed. These types of builds
8+
# # have access to the secrets in the build, which we need to use the remote
9+
# # caches (Bazel and sccache).
10+
# pull_request:
11+
# types:
12+
# - opened
13+
# - synchronize
14+
# - reopened
15+
# workflow_dispatch:
1616

1717
# Cancel in-progress runs of the workflow if somebody adds a new commit to the
1818
# PR or branch. That reduces billing, but it creates more noise about cancelled

.github/workflows/test-runner.yml

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -2,25 +2,25 @@ name: "gha: macOS & Windows"
22

33
# Build on pull requests and pushes to `main`. The PR builds will be
44
# non-blocking for now, but that is configured elsewhere.
5-
on:
6-
# Start these builds on pushes (think "after the merge") too. Normally there
7-
# are no `ci-gha**` branches in our repository. The contributors to the repo
8-
# can create such branches when testing or troubleshooting builds. In such
9-
# branches we can disable builds (to speed up the testing) or add new ones,
10-
# without impacting the rest of the team.
11-
push:
12-
branches: [ 'v[2-9]**', 'ci-gha**', 'prepare-for-v3.0.0' ]
13-
# Start the build in the context of the target branch. This is considered
14-
# "safe", as the workflow files are already committed. These types of builds
15-
# have access to the secrets in the build, which we need to use the remote
16-
# caches (Bazel and sccache).
17-
pull_request_target:
18-
types:
19-
- opened
20-
- synchronize
21-
- reopened
22-
schedule:
23-
- cron: '0 5 * * 1,2,3,4,5'
5+
# on:
6+
# # Start these builds on pushes (think "after the merge") too. Normally there
7+
# # are no `ci-gha**` branches in our repository. The contributors to the repo
8+
# # can create such branches when testing or troubleshooting builds. In such
9+
# # branches we can disable builds (to speed up the testing) or add new ones,
10+
# # without impacting the rest of the team.
11+
# push:
12+
# branches: [ 'v[2-9]**', 'ci-gha**', 'prepare-for-v3.0.0' ]
13+
# # Start the build in the context of the target branch. This is considered
14+
# # "safe", as the workflow files are already committed. These types of builds
15+
# # have access to the secrets in the build, which we need to use the remote
16+
# # caches (Bazel and sccache).
17+
# pull_request_target:
18+
# types:
19+
# - opened
20+
# - synchronize
21+
# - reopened
22+
# schedule:
23+
# - cron: '0 5 * * 1,2,3,4,5'
2424

2525
# Cancel in-progress runs of the workflow if somebody adds a new commit to the
2626
# PR or branch. That reduces billing, but it creates more noise about cancelled

.github/workflows/windows-bazel.yml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
name: Windows-Builds
22

3-
on:
4-
workflow_call:
5-
inputs:
6-
checkout-ref:
7-
required: true
8-
description: "The ref we want to compile"
9-
type: string
10-
bazel-cache-mode:
11-
required: true
12-
description: "READ_WRITE or READ_ONLY"
13-
type: string
14-
execute-integration-tests:
15-
required: true
16-
description: "Integration tests require credentials."
17-
type: boolean
3+
# on:
4+
# workflow_call:
5+
# inputs:
6+
# checkout-ref:
7+
# required: true
8+
# description: "The ref we want to compile"
9+
# type: string
10+
# bazel-cache-mode:
11+
# required: true
12+
# description: "READ_WRITE or READ_ONLY"
13+
# type: string
14+
# execute-integration-tests:
15+
# required: true
16+
# description: "Integration tests require credentials."
17+
# type: boolean
1818

1919
permissions:
2020
contents: read

.github/workflows/windows-cmake.yml

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,28 @@
11
name: Windows-Builds
22

3-
on:
4-
workflow_call:
5-
inputs:
6-
checkout-ref:
7-
required: true
8-
description: "The ref we want to compile"
9-
type: string
10-
full-matrix:
11-
required: true
12-
description: "Build the full matrix"
13-
type: boolean
14-
sccache-mode:
15-
required: true
16-
description: "READ_WRITE or DISABLED"
17-
type: string
18-
vcpkg-cache-mode:
19-
required: true
20-
description: "read or readwrite"
21-
type: string
22-
execute-integration-tests:
23-
required: true
24-
description: "Integration tests require credentials."
25-
type: boolean
3+
# on:
4+
# workflow_call:
5+
# inputs:
6+
# checkout-ref:
7+
# required: true
8+
# description: "The ref we want to compile"
9+
# type: string
10+
# full-matrix:
11+
# required: true
12+
# description: "Build the full matrix"
13+
# type: boolean
14+
# sccache-mode:
15+
# required: true
16+
# description: "READ_WRITE or DISABLED"
17+
# type: string
18+
# vcpkg-cache-mode:
19+
# required: true
20+
# description: "read or readwrite"
21+
# type: string
22+
# execute-integration-tests:
23+
# required: true
24+
# description: "Integration tests require credentials."
25+
# type: boolean
2626

2727
permissions:
2828
contents: read

0 commit comments

Comments
 (0)