-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Validate settings and guide files for all fdns (#52)
Signed-off-by: Daniel Castaño Sánchez <[email protected]> Signed-off-by: Sergio Castaño Sánchez <[email protected]> Co-authored-by: Daniel Castaño Sánchez <[email protected]> Co-authored-by: Sergio Castaño Sánchez <[email protected]>
- Loading branch information
1 parent
250a44d
commit 91d96b8
Showing
12 changed files
with
216 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
name: ASWF validate settings | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
paths: | ||
- aswf/settings.yml | ||
|
||
jobs: | ||
validate-landscape-settings: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: cncf/landscape2-validate-action@v2 | ||
with: | ||
target_kind: settings | ||
target_path: aswf/settings.yml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
name: CDF validate settings | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
paths: | ||
- cdf/settings.yml | ||
|
||
jobs: | ||
validate-landscape-settings: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: cncf/landscape2-validate-action@v2 | ||
with: | ||
target_kind: settings | ||
target_path: cdf/settings.yml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
name: DLT validate guide | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
paths: | ||
- dlt/guide.yml | ||
|
||
jobs: | ||
validate-landscape-guide: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: cncf/landscape2-validate-action@v2 | ||
with: | ||
target_kind: guide | ||
target_path: dlt/guide.yml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
name: DLT validate settings | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
paths: | ||
- dlt/settings.yml | ||
|
||
jobs: | ||
validate-landscape-settings: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: cncf/landscape2-validate-action@v2 | ||
with: | ||
target_kind: settings | ||
target_path: dlt/settings.yml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
name: GraphQL validate settings | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
paths: | ||
- graphql/settings.yml | ||
|
||
jobs: | ||
validate-landscape-settings: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: cncf/landscape2-validate-action@v2 | ||
with: | ||
target_kind: settings | ||
target_path: graphql/settings.yml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
name: LFAI validate settings | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
paths: | ||
- lfai/settings.yml | ||
|
||
jobs: | ||
validate-landscape-settings: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: cncf/landscape2-validate-action@v2 | ||
with: | ||
target_kind: settings | ||
target_path: lfai/settings.yml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
name: OpenSSF validate guide | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
paths: | ||
- openssf/guide.yml | ||
|
||
jobs: | ||
validate-landscape-guide: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: cncf/landscape2-validate-action@v2 | ||
with: | ||
target_kind: guide | ||
target_path: openssf/guide.yml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
name: OpenSSF validate settings | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
paths: | ||
- openssf/settings.yml | ||
|
||
jobs: | ||
validate-landscape-settings: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: cncf/landscape2-validate-action@v2 | ||
with: | ||
target_kind: settings | ||
target_path: openssf/settings.yml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
name: OSPO validate guide | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
paths: | ||
- ospo/guide.yml | ||
|
||
jobs: | ||
validate-landscape-guide: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: cncf/landscape2-validate-action@v2 | ||
with: | ||
target_kind: guide | ||
target_path: ospo/guide.yml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
name: OSPO validate settings | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
paths: | ||
- ospo/settings.yml | ||
|
||
jobs: | ||
validate-landscape-settings: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: cncf/landscape2-validate-action@v2 | ||
with: | ||
target_kind: settings | ||
target_path: ospo/settings.yml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
name: Presto validate settings | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
paths: | ||
- presto/settings.yml | ||
|
||
jobs: | ||
validate-landscape-settings: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: cncf/landscape2-validate-action@v2 | ||
with: | ||
target_kind: settings | ||
target_path: presto/settings.yml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
name: RISCV validate settings | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
paths: | ||
- riscv/settings.yml | ||
|
||
jobs: | ||
validate-landscape-settings: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: cncf/landscape2-validate-action@v2 | ||
with: | ||
target_kind: settings | ||
target_path: riscv/settings.yml |