You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by je...@apache.org on 2021/11/23 22:29:20 UTC

[airflow-ci-infra] 01/01: Add note to restart runners when updating committers

This is an automated email from the ASF dual-hosted git repository.

jedcunningham pushed a commit to branch restart_note
in repository https://gitbox.apache.org/repos/asf/airflow-ci-infra.git

commit 609e3f36346b252a91c756c49463ab225eda09c5
Author: Jed Cunningham <66...@users.noreply.github.com>
AuthorDate: Tue Nov 23 15:28:35 2021 -0700

    Add note to restart runners when updating committers
---
 scripts/list_committers | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/scripts/list_committers b/scripts/list_committers
index deaafb5..70ab370 100755
--- a/scripts/list_committers
+++ b/scripts/list_committers
@@ -30,10 +30,11 @@ def main(github_token):
     committer_usernames = sorted(f'"{c.login}"' for c in committers.get_members())
 
     click.echo("Take the below list and:")
+    click.echo(" - update the `/runners/apache/airflow/configOverlay` parameter in AWS SSM ParameterStore")
+    click.echo(" - restart the self-hosted runners")
     click.echo(
-        " - replace the list of commiters in the `build-info` job in apache/airflow's `.github/workflows/ci.yml`"
+        " - finally, replace the list of commiters in the `build-info` job in apache/airflow's `.github/workflows/ci.yml`\n"
     )
-    click.echo(" - update the `/runners/apache/airflow/configOverlay` parameter in AWS SSM ParameterStore\n")
     click.echo(',\n'.join(committer_usernames))