Skip to content

Commit

Permalink
Merge pull request #2359 from jaimergp/new-core-meeting-dates
Browse files Browse the repository at this point in the history
  • Loading branch information
beckermr authored Nov 7, 2024
2 parents f064747 + dfb0d80 commit 776d2d3
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 4 deletions.
2 changes: 1 addition & 1 deletion community/meetings.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

We hold a series of recurring meetings:

- `⚫ [conda-forge] core meeting`: every second Wednesday from 17:00-18:00 (UTC). Despite the name, they are open to everyone. Feel free to stop by! Meeting notes available at [Minutes](minutes.mdx).
- `⚫ [conda-forge] core meeting`: every second Wednesday, alternating between 17:00-18:00 and 14:00-15:00 (UTC). Despite the name, they are open to everyone. Feel free to stop by! Meeting notes available at [Minutes](minutes.mdx).
- `⚫ [conda-forge] bot sync`: first Friday of the month at 15:00 (UTC). These are technical meetings meant for infrastructure and tooling contributors. Meeting notes available in [HackMD](https://hackmd.io/@conda-forge/BJE6E1VY2).

We encourage contributors to join the meetings and learn more about and from the community. Look for the events in the calendar below!
Expand Down
File renamed without changes.
14 changes: 14 additions & 0 deletions news/2024-11-07-new-time-core-meetings.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# New time available for conda-forge core meetings

The core team has decided to change the time when core meetings happen to accommodate more attendees across different timezones. It will still happen every two Wednesdays, but starting next Wednesday, November 13th 2024, it will alternate between 17:00-18:00 UTC and 14:00-15:00 UTC.

For clarity, these are the next dates:

- November 13th, 2024 at 17:00 UTC
- November 27th, 2024 at 14:00 UTC
- December 11th, 2024 at 17:00 UTC
- ~~December 25th, 2024 at 14:00 UTC~~
- January 8th, 2025, at 17:00 UTC
- ... and so on.

A new calendar is now available in the [Community > Meetings](/community/meetings/) section to help find the dates.
11 changes: 8 additions & 3 deletions src/components/Calendar/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,20 @@ export default function Calendar() {
setThemeMode(colorMode);
});
return (
<>
<iframe
src={`https://calendar.google.com/calendar/embed?height=500&wkst=${firstDay}&ctz=${timezone}&showTitle=0&showTz=1&showPrint=0&src=ODgwNTU3MGE0ZTFjYTIzMTk4NDI5NzFkYjQzODBlZDUxOGM0OTA1NzdjMDY0NTRhZGYyMzAzNzM0NTA2ZjM5N0Bncm91cC5jYWxlbmRhci5nb29nbGUuY29t&color=%2333b679`}
width="100%"
height="500"
style={
themeMode === "dark"
? { filter: "invert(95%) brightness(95%) hue-rotate(180deg)" }
: {}
? { filter: "invert(95%) brightness(95%) hue-rotate(180deg)" }
: {}
}
></iframe>
></iframe>
<blockquote>
If you cannot see a calendar above this message, please check the <a href={`https://calendar.google.com/calendar/embed?height=500&wkst=${firstDay}&ctz=${timezone}&showTitle=0&showTz=1&showPrint=0&src=ODgwNTU3MGE0ZTFjYTIzMTk4NDI5NzFkYjQzODBlZDUxOGM0OTA1NzdjMDY0NTRhZGYyMzAzNzM0NTA2ZjM5N0Bncm91cC5jYWxlbmRhci5nb29nbGUuY29t&color=%2333b679`} target="_blank" title="Visit the conda community calendar">conda community calendar</a>.
</blockquote>
</>
);
}

0 comments on commit 776d2d3

Please sign in to comment.