From 979baa5809091231794130d54912bf83f10a15d1 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 27 May 2026 05:24:46 +0000 Subject: [PATCH 1/8] Initial plan From 380f1e9f6ed642e8d6f9b4ba636c92203132e213 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 27 May 2026 05:29:22 +0000 Subject: [PATCH 2/8] feat: add closed conferences page --- Gemfile.lock | 4 ++-- README.md | 4 ++-- _data/closed.yml | 6 ++++++ _includes/nav.html | 1 + closed.html | 21 +++++++++++++++++++++ 5 files changed, 32 insertions(+), 4 deletions(-) create mode 100644 _data/closed.yml create mode 100644 closed.html diff --git a/Gemfile.lock b/Gemfile.lock index 5b781272..0f22f940 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -136,7 +136,7 @@ GEM http_parser.rb (0.8.1) i18n (1.14.8) concurrent-ruby (~> 1.0) - io-event (1.14.3) + io-event (1.11.2) jekyll (3.10.0) addressable (~> 2.4) colorator (~> 1.0) @@ -338,4 +338,4 @@ RUBY VERSION ruby 3.2.7p253 BUNDLED WITH - 2.4.19 + 2.4.17 diff --git a/README.md b/README.md index 9d40b138..73a7f2fc 100644 --- a/README.md +++ b/README.md @@ -31,8 +31,8 @@ cd testingconferences.github.io ``` ## Contributing Guidelines -The list of events is driven by files in the ```_data``` folder - if you have an update for those things, just change the ```current.yml``` and ```past.yml``` files and send a PR. - - The _order_ of the events listed in ```current.yml``` and ```past.yml``` dictates the _order_ displayed, please make sure to properly insert events. +The list of events is driven by files in the ```_data``` folder - if you have an update for those things, just change the relevant data file (currently ```current.yml```, ```past.yml```, or ```closed.yml```) and send a PR. + - The _order_ of the events listed in the data files dictates the _order_ displayed, please make sure to properly insert events. - If possible, spell out the conference name and add the abbreviation. Otherwise just use the abbreviation: - Example: Workshop on Performance and Reliability (WOPR) - If the conference name has a colon (:), place the entire name in quotes. Otherwise this can cause build errors. diff --git a/_data/closed.yml b/_data/closed.yml new file mode 100644 index 00000000..3f99e9b6 --- /dev/null +++ b/_data/closed.yml @@ -0,0 +1,6 @@ +- name: GreaTest Quality + location: Zurich, Switzerland + first_date: June 2, 2023 + last_date: May 23, 2025 + url: https://www.greatestquality.ch + status: Annual conference discontinued after 2025 and replaced by smaller community meetups. diff --git a/_includes/nav.html b/_includes/nav.html index 819873f1..37314836 100644 --- a/_includes/nav.html +++ b/_includes/nav.html @@ -2,6 +2,7 @@