File tree Expand file tree Collapse file tree 6 files changed +35
-7
lines changed Expand file tree Collapse file tree 6 files changed +35
-7
lines changed Original file line number Diff line number Diff line change 13
13
- cron : ' 30 1 * * *' # run every day
14
14
workflow_dispatch : {}
15
15
16
+ permissions : {}
17
+
16
18
jobs :
17
19
stale-auto-close :
18
- runs-on : ${{ 'ubuntu-latest' }}
20
+ permissions :
21
+ contents : read
22
+ pull-requests : write
23
+ runs-on : ubuntu-latest
19
24
steps :
20
- - uses : actions/stale@v5 .1.1
25
+ - uses : actions/stale@5bef64f19d7facfb25b37b414482c7164d639639 # v9 .1.0
21
26
with :
22
27
repo-token : ${{ secrets.GITHUB_TOKEN }}
23
28
stale-pr-message : ' This pull request is stale because it has been open 30 days with no activity. Make a comment or update the PR to avoid closing PR after 15 days.'
Original file line number Diff line number Diff line change @@ -18,10 +18,15 @@ concurrency:
18
18
group : ${{ github.workflow }}-${{ github.ref }}
19
19
cancel-in-progress : true
20
20
21
+ permissions : {}
22
+
21
23
jobs :
22
24
Auto-Update-PR :
25
+ permissions :
26
+ contents : read
27
+ pull-requests : write
23
28
runs-on : ubuntu-latest
24
29
steps :
25
- - uses : tibdex/auto-update@v2.2.1
30
+ - uses : tibdex/auto-update@4081c5bdc34560b58288a010318054e63e6f4a51
26
31
with :
27
32
github_token : ${{ secrets.SYS_ORCH_GITHUB }}
Original file line number Diff line number Diff line change 12
12
- release-*
13
13
workflow_dispatch :
14
14
15
+ permissions : {}
16
+
15
17
jobs :
16
18
integration-smoke-test :
19
+ permissions :
20
+ contents : read
17
21
runs-on : ubuntu-24.04-16core-64GB
18
22
steps :
19
23
- name : Checkout orch-ci repository
20
- uses : actions/checkout@v4
24
+ uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
21
25
with :
22
26
repository : open-edge-platform/orch-ci
23
27
path : ci
24
28
ref : " main"
25
29
token : ${{ secrets.SYS_ORCH_GITHUB }}
30
+ persist-credentials : false
26
31
27
32
- name : Checkout cluster-tests
28
- uses : actions/checkout@v4
33
+ uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
29
34
with :
30
35
repository : open-edge-platform/cluster-tests
31
36
path : cluster-tests
32
37
ref : ${{ github.head_ref }} # Checkout the branch that triggered the workflow to avoid detached HEAD
33
38
token : ${{ secrets.SYS_ORCH_GITHUB }}
39
+ persist-credentials : false
34
40
35
41
- name : Bootstrap CI environment
36
42
uses : ./ci/.github/actions/bootstrap
Original file line number Diff line number Diff line change 12
12
- release-*
13
13
workflow_dispatch :
14
14
15
+ permissions : {}
16
+
15
17
jobs :
16
18
post-merge :
19
+ permissions :
20
+ contents : read
21
+ security-events : write
22
+ id-token : write
17
23
uses : open-edge-platform/orch-ci/.github/workflows/post-merge.yml@main
18
24
with :
19
25
run_build : false
24
30
run_docker_push : false
25
31
run_helm_build : false
26
32
run_helm_push : false
27
- secrets : inherit
33
+ secrets : inherit # zizmor: ignore[secrets-inherit]
Original file line number Diff line number Diff line change 12
12
- release-*
13
13
workflow_dispatch :
14
14
15
+ permissions : {}
16
+
15
17
jobs :
16
18
pre-merge :
19
+ permissions :
20
+ contents : read
17
21
uses : open-edge-platform/orch-ci/.github/workflows/pre-merge.yml@main
18
22
with :
19
23
run_security_scans : true
26
30
run_docker_build : false
27
31
run_artifact : false
28
32
run_reuse_check : true
29
- secrets : inherit
Original file line number Diff line number Diff line change 1
1
2
2
# Tests for Cluster Orchestration Service
3
3
4
+ [ ![ License] ( https://img.shields.io/badge/License-Apache%202.0-blue.svg )] ( https://opensource.org/licenses/Apache-2.0 )
5
+ [ ![ OpenSSF Scorecard] ( https://api.scorecard.dev/projects/github.com/open-edge-platform/cluster-tests/badge )] ( https://scorecard.dev/viewer/?uri=github.com/open-edge-platform/cluster-tests )
6
+
4
7
## Overview
5
8
6
9
This repo documents the test plan for Cluster Orchestration subsystem in Intel® Open Edge Platform. It also hosts the
You can’t perform that action at this time.
0 commit comments