Revision 230f0b9b7cb4885864d457c82e312489c0a0d3d7 authored by Paul Chaignon on 21 May 2021, 21:10:24 UTC, committed by Nathan Sweet on 04 June 2021, 16:46:12 UTC
[ upstream commit 802d25447fa1d325d3713220f8ad08e7938f6dd4 ]

Commit 50df544 added a new job in the end-to-end workflows to checkout
the tested code and run paths-filter on it. That first job fails when
the workflows are scheduled (vs. triggered by PR comment) because we try
to grab the pull request URL, which doesn't exist:

    curl ${{ github.event.issue.pull_request.url }} > pr.json

results in error:

    Run curl  > pr.json
    curl: try 'curl --help' or 'curl --manual' for more information

We can avoid this by skipping steps in the first job when triggered by
schedule. We can't skip the entire first job because the second job has
a dependency on the first and would fail if we skipped the first.

Fixes: 50df544 (".github: Skip unnecessary ci-xxx tests")
Signed-off-by: Paul Chaignon <paul@cilium.io>
Signed-off-by: Quentin Monnet <quentin@isovalent.com>
1 parent e942366
Raw File
MAINTAINERS.md
# Maintainers

See [Governance](Documentation/contributing/governance/commit_access.rst) for
governance, commit, and vote guidelines as well as maintainer responsibilities.
Everybody listed in this file is a committer as per governance definition.

All committers and maintainers have identical voting rights. Maintainers have
additional administrative and janitorial responsibilities.

Regardless of maintainer or committer status, any code contribution is subject
to code review requirements as per [CODEOWNERS](CODEOWNERS) and PRs get merged
by the "janitor role" which is rotated between all committers.

## Cilium Maintainers

 * [André Martins] (Isovalent)
 * [Joe Stringer] (Isovalent)

## Hubble Maintainers

 * [Glib Smaga] (Isovalent)
 * [Sebastian Wicki] (Isovalent)

## Cilium & Hubble Committers

 * [Aditi Ghag] (Isovalent)
 * [Alexandre Perrin] (Isovalent)
 * [Beatriz Martinez] (Isovalent)
 * [Chris Tarazi] (Isovalent)
 * [Daniel Borkmann] (Isovalent)
 * [Dan Wendlandt] (Isovalent)
 * [Deepesh Pathak]
 * [Eloy Coto] (Red Hat)
 * [Gilberto Bertin] (Isovalent)
 * [Ian Vernon]
 * [Ilya Dmitrichenko] (Isovalent)
 * [Jarno Rajahalme] (Isovalent)
 * [John Fastabend] (Isovalent)
 * [Kornilios Kourtis] (Isovalent)
 * [Laurent Bernaille] (Datadog)
 * [Maciej Kwiek] (Isovalent)
 * [Martynas Pumputis] (Isovalent)
 * [Michael Rostecki] (SUSE)
 * [Michi Mutsuzaki] (Isovalent)
 * [Natália Réka Ivánkó] (Isovalent)
 * [Nathan Sweet] (Isovalent)
 * [Nirmoy Das] (AMD)
 * [Paul Chaignon] (Isovalent)
 * [Quentin Monnet] (Isovalent)
 * [Ray Bejjani]
 * [Robin Hahling] (Isovalent)
 * [Tam Mach] (Zendesk)
 * [Thomas Graf] (Isovalent)
 * [Timo Beckers] (Isovalent)
 * [Tobias Klauser] (Isovalent)
 * [Tom Payne] (Isovalent)
 * [Vlad Ungureanu] (Palantir)
 * [Weilong Cui] (Google)
 * [Yongkun Gui] (Google)
 * [Zang Li] (Google)

Please see the AUTHORS file for the full list of contributors to the Cilium
project.

[Aditi Ghag]: https://github.com/aditighag
[Alexandre Perrin]: https://github.com/kaworu
[André Martins]: https://github.com/aanm
[Beatriz Martinez]: https://github.com/b3a-dev
[Chris Tarazi]: https://github.com/christarazi
[Daniel Borkmann]: https://github.com/borkmann
[Dan Wendlandt]: https://github.com/danwent
[Deepesh Pathak]: https://github.com/fristonio
[Eloy Coto]: https://github.com/eloycoto
[Gilberto Bertin]: https://github.com/jibi
[Glib Smaga]: https://github.com/glibsm
[Ian Vernon]: https://github.com/ianvernon
[Ilya Dmitrichenko]: https://github.com/errordeveloper
[Jarno Rajahalme]: https://github.com/jrajahalme
[Joe Stringer]: https://github.com/joestringer
[John Fastabend]: https://github.com/jrfastab
[Kornilios Kourtis]: https://github.com/kkourt
[Laurent Bernaille]: https://github.com/lbernail
[Maciej Kwiek]: https://github.com/nebril
[Martynas Pumputis]: https://github.com/brb
[Michael Rostecki]: https://github.com/mrostecki
[Michi Mutsuzaki]: https://github.com/michi-covalent
[Natália Réka Ivánkó]: https://github.com/sharlns
[Nathan Sweet]: https://github.com/nathanjsweet
[Nirmoy Das]: https://github.com/nirmoy
[Paul Chaignon]: https://github.com/pchaigno
[Quentin Monnet]: https://github.com/qmonnet
[Ray Bejjani]: https://github.com/raybejjani
[Robin Hahling]: https://github.com/rolinh
[Sebastian Wicki]: https://github.com/gandro
[Tam Mach]: https://github.com/sayboras
[Thomas Graf]: https://github.com/tgraf
[Timo Beckers]: https://github.com/ti-mo
[Tobias Klauser]: https://github.com/tklauser
[Tom Payne]: https://github.com/twpayne
[Vlad Ungureanu]: https://github.com/ungureanuvladvictor
[Weilong Cui]: https://github.com/Weil0ng
[Yongkun Gui]: https://github.com/anfernee
[Zang Li]: https://github.com/lzang
back to top