From 8a742bafa5b8480f08d3c808128d588c167fc7e9 Mon Sep 17 00:00:00 2001 From: stevenhorsman Date: Mon, 28 Oct 2024 10:49:44 +0000 Subject: [PATCH 1/2] doc: Add Q&A link to board Add information to clarify that the election Q&A process will take place on the Community repo's discussions board. Signed-off-by: stevenhorsman --- elections/process/README.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/elections/process/README.md b/elections/process/README.md index 37abecbc0d..5c67bb5c2a 100644 --- a/elections/process/README.md +++ b/elections/process/README.md @@ -28,7 +28,7 @@ Things to keep in mind when selecting election dates: - Allow at least a week for nomination and campaign periods - The current AC needs to approve the timeline once there is a proposal - + # Preparation As early as possible but at least a month before election starts: @@ -91,6 +91,10 @@ The AC election includes a period after the candidates are defined but before the election, for candidates to answer questions from the community. +The questions will be hosted in the Community repo's +[discussions board](https://github.com/kata-containers/community/discussions) +and tagged with the election date/name for ease of searching. + Open this with Kata AC election - Campaign period started email, and also announce it on Slack. @@ -117,7 +121,7 @@ A couple of days before the AC Election ends: - Send Kata AC election - Voting period started reminder email and Slack note - + Ending the Kata AC Election: - Close the election and send Kata AC election - Voting period ended email, and From 6414946fee80250afcae7de3a760d337b7dd2862 Mon Sep 17 00:00:00 2001 From: stevenhorsman Date: Tue, 29 Oct 2024 14:50:07 +0000 Subject: [PATCH 2/2] workflows: Pin runner Pin the runner so we don't accidentally bump and cause issues in the CI when GitHub updates Signed-off-by: stevenhorsman --- .github/workflows/PR-wip-checks.yaml | 2 +- .github/workflows/dco-check.yaml | 4 ++-- .github/workflows/main.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/PR-wip-checks.yaml b/.github/workflows/PR-wip-checks.yaml index 16f8167b2b..f5b1b96478 100644 --- a/.github/workflows/PR-wip-checks.yaml +++ b/.github/workflows/PR-wip-checks.yaml @@ -11,7 +11,7 @@ on: jobs: pr_wip_check: - runs-on: ubuntu-latest + runs-on: ubuntu-24.04 name: WIP Check steps: - name: WIP Check diff --git a/.github/workflows/dco-check.yaml b/.github/workflows/dco-check.yaml index 159dec2e1a..803d880d6e 100644 --- a/.github/workflows/dco-check.yaml +++ b/.github/workflows/dco-check.yaml @@ -1,5 +1,5 @@ name: DCO check -on: +on: pull_request: types: - opened @@ -8,7 +8,7 @@ on: jobs: dco_check_job: - runs-on: ubuntu-latest + runs-on: ubuntu-24.04 name: DCO Check steps: - name: Get PR Commits diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 6ee376790f..d78c970c3f 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -2,7 +2,7 @@ on: ["pull_request"] name: Static checks jobs: static-checks: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 env: GOPATH: ${{ github.workspace }} steps: