├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ ├── docs_request.md │ ├── feature_request.md │ ├── repo_deprecation_request.md │ ├── repo_incubating_request.md │ ├── repo_promoting_to_stable.md │ └── repo_sandbox_request.md └── PULL_REQUEST_TEMPLATE.md ├── CODE_OF_CONDUCT.md ├── GOVERNANCE.md ├── LICENSE ├── MAINTAINERS.md ├── MAINTAINERS_GUIDELINES.md ├── Makefile ├── OWNERS ├── README.md ├── REPOSITORIES.md ├── deploy └── README.md ├── img └── pidgeotto.gif ├── maintainers.yaml ├── people └── affiliations.json ├── repos └── badges │ ├── README.md │ ├── falco-core-blue.svg │ ├── falco-ecosystem-blue.svg │ └── falco-infra-blue.svg ├── repositories.yaml └── utils ├── .gitignore ├── Makefile ├── cmd ├── maintainers.go ├── readme.go └── utils.go ├── go.mod ├── go.sum └── pkg └── utils ├── text.go └── types.go /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falcosecurity/evolution/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falcosecurity/evolution/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/docs_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falcosecurity/evolution/HEAD/.github/ISSUE_TEMPLATE/docs_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falcosecurity/evolution/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/repo_deprecation_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falcosecurity/evolution/HEAD/.github/ISSUE_TEMPLATE/repo_deprecation_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/repo_incubating_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falcosecurity/evolution/HEAD/.github/ISSUE_TEMPLATE/repo_incubating_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/repo_promoting_to_stable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falcosecurity/evolution/HEAD/.github/ISSUE_TEMPLATE/repo_promoting_to_stable.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/repo_sandbox_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falcosecurity/evolution/HEAD/.github/ISSUE_TEMPLATE/repo_sandbox_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falcosecurity/evolution/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falcosecurity/evolution/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /GOVERNANCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falcosecurity/evolution/HEAD/GOVERNANCE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falcosecurity/evolution/HEAD/LICENSE -------------------------------------------------------------------------------- /MAINTAINERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falcosecurity/evolution/HEAD/MAINTAINERS.md -------------------------------------------------------------------------------- /MAINTAINERS_GUIDELINES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falcosecurity/evolution/HEAD/MAINTAINERS_GUIDELINES.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falcosecurity/evolution/HEAD/Makefile -------------------------------------------------------------------------------- /OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falcosecurity/evolution/HEAD/OWNERS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falcosecurity/evolution/HEAD/README.md -------------------------------------------------------------------------------- /REPOSITORIES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falcosecurity/evolution/HEAD/REPOSITORIES.md -------------------------------------------------------------------------------- /deploy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falcosecurity/evolution/HEAD/deploy/README.md -------------------------------------------------------------------------------- /img/pidgeotto.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falcosecurity/evolution/HEAD/img/pidgeotto.gif -------------------------------------------------------------------------------- /maintainers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falcosecurity/evolution/HEAD/maintainers.yaml -------------------------------------------------------------------------------- /people/affiliations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falcosecurity/evolution/HEAD/people/affiliations.json -------------------------------------------------------------------------------- /repos/badges/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falcosecurity/evolution/HEAD/repos/badges/README.md -------------------------------------------------------------------------------- /repos/badges/falco-core-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falcosecurity/evolution/HEAD/repos/badges/falco-core-blue.svg -------------------------------------------------------------------------------- /repos/badges/falco-ecosystem-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falcosecurity/evolution/HEAD/repos/badges/falco-ecosystem-blue.svg -------------------------------------------------------------------------------- /repos/badges/falco-infra-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falcosecurity/evolution/HEAD/repos/badges/falco-infra-blue.svg -------------------------------------------------------------------------------- /repositories.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falcosecurity/evolution/HEAD/repositories.yaml -------------------------------------------------------------------------------- /utils/.gitignore: -------------------------------------------------------------------------------- 1 | bin -------------------------------------------------------------------------------- /utils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falcosecurity/evolution/HEAD/utils/Makefile -------------------------------------------------------------------------------- /utils/cmd/maintainers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falcosecurity/evolution/HEAD/utils/cmd/maintainers.go -------------------------------------------------------------------------------- /utils/cmd/readme.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falcosecurity/evolution/HEAD/utils/cmd/readme.go -------------------------------------------------------------------------------- /utils/cmd/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falcosecurity/evolution/HEAD/utils/cmd/utils.go -------------------------------------------------------------------------------- /utils/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falcosecurity/evolution/HEAD/utils/go.mod -------------------------------------------------------------------------------- /utils/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falcosecurity/evolution/HEAD/utils/go.sum -------------------------------------------------------------------------------- /utils/pkg/utils/text.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falcosecurity/evolution/HEAD/utils/pkg/utils/text.go -------------------------------------------------------------------------------- /utils/pkg/utils/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falcosecurity/evolution/HEAD/utils/pkg/utils/types.go --------------------------------------------------------------------------------