diff --git a/ADD_CONTRIBUTOR.md b/ADD_CONTRIBUTOR.md index 9cf865005..07f1981f8 100644 --- a/ADD_CONTRIBUTOR.md +++ b/ADD_CONTRIBUTOR.md @@ -1,5 +1,5 @@ # How to add new contributor -Please follow these steps to add new contributor to [contributors page](https://falco.org//community/contributors/#the-latest-contributors): +Please follow these steps to add new contributor to [contributors page](https://falco.org//community/contributors/): 1. Fork [Falco](https://github.com/falcosecurity/falco-website) repository 2. Add new contributor image to the [static/img/community/contributors](https://github.com/falcosecurity/falco-website/blob/master/static/img/community/contributors) @@ -8,23 +8,28 @@ Please follow these steps to add new contributor to [contributors page](https:// ``` - date: January and February, 2022 names: - - Alban Créquy - links: - - https://github.com/alban + - Name FamilyName + links: + - https://github.com/name images: - - /img/community/contributors/melissa_kilby.svg + - /img/community/contributors/name.svg + descriptions: + - Couple of sentences about the contribution ``` 4. If you need to add more than one contributor use template below ``` - date: February, 2023 names: - - Melissa Kilby - - David Windsor + - Name FamilyName1 + - Name FamilyName2 links: - - https://github.com/incertum - - https://github.com/dwindsor + - https://github.com/name1 + - https://github.com/name2 images: - - /img/community/contributors/melissa_kilby.svg - - /img/community/contributors/contributor_m.svg + - /img/community/contributors/name1.svg + - /img/community/contributors/name2.svg + descriptions: + - Couple of sentences about the contribution + - Couple of sentences about the contribution ``` 5. Create pull request to the Falco repository with your changes diff --git a/data/contributors.yaml b/data/contributors.yaml index 8922b1edd..f47bb428c 100644 --- a/data/contributors.yaml +++ b/data/contributors.yaml @@ -8,11 +8,16 @@ images: - /img/community/contributors/melissa_kilby.svg - /img/community/contributors/contributor_m.svg + descriptions: + - Melissa added the ability to filter process ancestry by exepath, which is useful for creating rules around shells or RCE originating from Java processes, providing new opportunities to write filter expressions for many use cases, and added aexepath and aexe filters and a display option, while also changing the ordering of proc.x fields in a follow-up PR. + - David has been performing exceptionally well as a driverkit maintainer and on libs, tirelessly adding new modern BPF syscalls; furthermore, he has recently added new features such as getresgid, getresuid, and nanosleep to modern_probe in the libs repository. - date: January, 2023 names: - Logan Bond links: - https://github.com/EXONER4TED + descriptions: + - Logan updated the Dockerfile to be in the root of the repo, removed the shell script wrapper, added linting and testing checks to the CI pipeline, and updated the container to run as a non-root user. - date: January and February, 2022 names: - Alban Créquy diff --git a/layouts/partials/contributors.html b/layouts/partials/contributors.html index 1f6d6f7b1..39a322c32 100644 --- a/layouts/partials/contributors.html +++ b/layouts/partials/contributors.html @@ -6,40 +6,45 @@
{{ if eq $i 0 }} -
-

{{ $contributor.date }}

-
+
+

{{ $contributor.date }}

+ {{ else }} -
-
- {{ $contributor.date }} +
+
+ {{ $contributor.date }} +
+
-

- {{$links := $contributor.links }} - {{$names := $contributor.names }} - {{ range $index, $link := $links }} - {{ if ne $index (sub (len $links) 1) }} - {{ index $names $index }} - and - {{ else }} - {{ index $names $index }} - {{ end }} - {{ end }} -

-
{{ end }}