mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00
Squashed commit of the following:
commit 9a3bf2c0ed6e63c718789679745fdaa24a2c2ba9 Author: Joyce Brum <joycebrum@google.com> Date: Tue Dec 6 17:59:42 2022 +0000 fix: write permissions Signed-off-by: Joyce Brum <joycebrum@google.com> commit 7716f3c00cd7cfe4debbbf97662b1cee7277ba00 Author: Joyce Brum <joycebrum@google.com> Date: Tue Dec 6 17:04:19 2022 +0000 fix: typo on coverage workflow Signed-off-by: Joyce Brum <joycebrum@google.com> commit cb5165401392f1a2de3683ec33ffe97dc0f1fe9f Author: Joyce Brum <joycebrum@google.com> Date: Tue Dec 6 16:57:50 2022 +0000 feat: test coverage workflow with write permissions Signed-off-by: Joyce Brum <joycebrum@google.com> commit 235627f257d52139c9c73c2ca15c9ef7250cea2f Author: Joyce Brum <joycebrum@google.com> Date: Tue Dec 6 16:44:21 2022 +0000 fix: measure test read all and workflow dispatch Signed-off-by: Joyce Brum <joycebrum@google.com> commit 81b1581f19945ba5ddd7fa74661910a457af7515 Author: Joyce Brum <joycebrum@google.com> Date: Tue Dec 6 14:50:12 2022 +0000 feat: change from content read to read all Signed-off-by: Joyce Brum <joycebrum@google.com> commit 95bd39f615924a9c0186e6d3e1ad6c205c7db428 Author: Joyce Brum <joycebrum@google.com> Date: Tue Dec 6 14:45:45 2022 +0000 fix: add permission to write on e2e.yaml Signed-off-by: Joyce Brum <joycebrum@google.com> commit f86661da253af3908cde9f5f71311fbca6b26c81 Author: Joyce Brum <joycebrum@google.com> Date: Mon Dec 5 17:04:44 2022 +0000 feat: use read-only by default Signed-off-by: Joyce Brum <joycebrum@google.com> Signed-off-by: Joyce Brum <joycebrum@google.com>
This commit is contained in:
parent
571c65748e
commit
4bcf401b7f
2
.github/workflows/build.yaml
vendored
2
.github/workflows/build.yaml
vendored
@ -1,5 +1,7 @@
|
|||||||
name: Build
|
name: Build
|
||||||
on: [push, pull_request]
|
on: [push, pull_request]
|
||||||
|
permissions: read-all
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
2
.github/workflows/codeql-analysis.yml
vendored
2
.github/workflows/codeql-analysis.yml
vendored
@ -20,6 +20,8 @@ on:
|
|||||||
schedule:
|
schedule:
|
||||||
- cron: '20 14 * * 5'
|
- cron: '20 14 * * 5'
|
||||||
|
|
||||||
|
permissions: read-all
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
analyze:
|
analyze:
|
||||||
name: Analyze
|
name: Analyze
|
||||||
|
1
.github/workflows/contrib.yaml
vendored
1
.github/workflows/contrib.yaml
vendored
@ -1,5 +1,6 @@
|
|||||||
name: Test contrib/mixin
|
name: Test contrib/mixin
|
||||||
on: [push, pull_request]
|
on: [push, pull_request]
|
||||||
|
permissions: read-all
|
||||||
jobs:
|
jobs:
|
||||||
test:
|
test:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
1
.github/workflows/coverage.yaml
vendored
1
.github/workflows/coverage.yaml
vendored
@ -1,5 +1,6 @@
|
|||||||
name: Coverage
|
name: Coverage
|
||||||
on: [push]
|
on: [push]
|
||||||
|
permissions: read-all
|
||||||
jobs:
|
jobs:
|
||||||
coverage:
|
coverage:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
3
.github/workflows/e2e.yaml
vendored
3
.github/workflows/e2e.yaml
vendored
@ -1,8 +1,11 @@
|
|||||||
name: E2E
|
name: E2E
|
||||||
on: [push, pull_request]
|
on: [push, pull_request]
|
||||||
|
permissions: read-all
|
||||||
jobs:
|
jobs:
|
||||||
test:
|
test:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
permissions:
|
||||||
|
contents: write
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: true
|
fail-fast: true
|
||||||
matrix:
|
matrix:
|
||||||
|
1
.github/workflows/functional.yaml
vendored
1
.github/workflows/functional.yaml
vendored
@ -1,5 +1,6 @@
|
|||||||
name: functional-tests
|
name: functional-tests
|
||||||
on: [push, pull_request]
|
on: [push, pull_request]
|
||||||
|
permissions: read-all
|
||||||
jobs:
|
jobs:
|
||||||
test:
|
test:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
1
.github/workflows/fuzzing.yaml
vendored
1
.github/workflows/fuzzing.yaml
vendored
@ -1,5 +1,6 @@
|
|||||||
name: Fuzzing v3rpc
|
name: Fuzzing v3rpc
|
||||||
on: [push, pull_request]
|
on: [push, pull_request]
|
||||||
|
permissions: read-all
|
||||||
jobs:
|
jobs:
|
||||||
fuzzing:
|
fuzzing:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
1
.github/workflows/govuln.yaml
vendored
1
.github/workflows/govuln.yaml
vendored
@ -1,5 +1,6 @@
|
|||||||
name: Go Vulnerability Checker
|
name: Go Vulnerability Checker
|
||||||
on: [push, pull_request]
|
on: [push, pull_request]
|
||||||
|
permissions: read-all
|
||||||
jobs:
|
jobs:
|
||||||
test:
|
test:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
1
.github/workflows/grpcproxy.yaml
vendored
1
.github/workflows/grpcproxy.yaml
vendored
@ -1,5 +1,6 @@
|
|||||||
name: grpcProxy-tests
|
name: grpcProxy-tests
|
||||||
on: [push, pull_request]
|
on: [push, pull_request]
|
||||||
|
permissions: read-all
|
||||||
jobs:
|
jobs:
|
||||||
test:
|
test:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
1
.github/workflows/linearizability.yaml
vendored
1
.github/workflows/linearizability.yaml
vendored
@ -1,5 +1,6 @@
|
|||||||
name: Linearizability
|
name: Linearizability
|
||||||
on: [push, pull_request]
|
on: [push, pull_request]
|
||||||
|
permissions: read-all
|
||||||
jobs:
|
jobs:
|
||||||
test:
|
test:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
@ -1,9 +1,12 @@
|
|||||||
name: Measure Test Flakiness
|
name: Measure Test Flakiness
|
||||||
|
|
||||||
on:
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
schedule:
|
schedule:
|
||||||
- cron: "0 0 * * 0"
|
- cron: "0 0 * * 0"
|
||||||
|
|
||||||
|
permissions: read-all
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
measure-test-flakiness:
|
measure-test-flakiness:
|
||||||
name: Measure Test Flakiness
|
name: Measure Test Flakiness
|
||||||
|
3
.github/workflows/release.yaml
vendored
3
.github/workflows/release.yaml
vendored
@ -1,7 +1,10 @@
|
|||||||
name: Release
|
name: Release
|
||||||
on: [push, pull_request]
|
on: [push, pull_request]
|
||||||
|
permissions: read-all
|
||||||
jobs:
|
jobs:
|
||||||
main:
|
main:
|
||||||
|
permissions:
|
||||||
|
contents: write
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
|
1
.github/workflows/static-analysis.yaml
vendored
1
.github/workflows/static-analysis.yaml
vendored
@ -1,5 +1,6 @@
|
|||||||
name: Static Analysis
|
name: Static Analysis
|
||||||
on: [push, pull_request]
|
on: [push, pull_request]
|
||||||
|
permissions: read-all
|
||||||
jobs:
|
jobs:
|
||||||
run:
|
run:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
1
.github/workflows/tests.yaml
vendored
1
.github/workflows/tests.yaml
vendored
@ -1,5 +1,6 @@
|
|||||||
name: Tests
|
name: Tests
|
||||||
on: [push, pull_request]
|
on: [push, pull_request]
|
||||||
|
permissions: read-all
|
||||||
jobs:
|
jobs:
|
||||||
test:
|
test:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
Loading…
x
Reference in New Issue
Block a user