Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor(config/jobs): run peribolos against org.yaml in evolution repo #1000

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions config/jobs/peribolos/peribolos.yaml
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
presubmits:
falcosecurity/test-infra:
falcosecurity/evolution:
- name: peribolos-pre-submit
branches:
- ^master$
- ^main$
decorate: true
max_concurrency: 1
skip_report: false
run_if_changed: '^config/org.yaml$|^config/jobs/peribolos/.*'
run_if_changed: '^org.yaml$'
spec:
containers:
- image: gcr.io/k8s-prow/peribolos:v20230315-6d54c174f4
command:
- peribolos
args:
- --config-path=config/org.yaml
- --config-path=org.yaml
- --fix-org
- --fix-org-members
- --fix-repos
Expand All @@ -35,22 +35,22 @@ presubmits:
Archtype: "x86"

postsubmits:
falcosecurity/test-infra:
falcosecurity/evolution:
- name: peribolos-post-submit
branches:
- ^master$
- ^main$
decorate: true
max_concurrency: 1
skip_report: false
run_if_changed: '^config/org.yaml$|^config/jobs/peribolos/.*'
run_if_changed: '^org.yaml$'
spec:
containers:
- image: gcr.io/k8s-prow/peribolos:v20230315-6d54c174f4
command:
- peribolos
args:
- --confirm
- --config-path=config/org.yaml
- --config-path=org.yaml
- --fix-org
- --fix-org-members
- --fix-repos
Expand Down Expand Up @@ -80,16 +80,16 @@ periodics:
always_run: true
extra_refs:
- org: falcosecurity
repo: test-infra
base_ref: master
repo: evolution
base_ref: main
spec:
containers:
- image: gcr.io/k8s-prow/peribolos:v20230315-6d54c174f4
command:
- peribolos
args:
- --confirm
- --config-path=config/org.yaml
- --config-path=org.yaml
- --fix-org
- --fix-org-members
- --fix-repos
Expand Down