-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
66 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
#!/usr/bin/env bash | ||
set -euo pipefail | ||
|
||
HERE=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd ) | ||
|
||
rm ${HERE}/../community/minutes/*.md | ||
pushd $(mktemp -d) | ||
curl -L https://github.com/conda-incubator/governance/archive/refs/heads/main.tar.gz -o governance.tar.gz | ||
tar -C "${HERE}/../community/minutes" -xf governance.tar.gz --strip-components 3 "governance-main/meetings/archive/" | ||
popd | ||
|
||
pushd ${HERE}/../community/minutes | ||
for f in *.md; do | ||
# Rename files from YYYYMMDD_agenda_and_minutes.md to YYYY-MM-DD.md | ||
mv "$f" "${f:0:4}-${f:4:2}-${f:6:2}.md" | ||
done | ||
|
||
# Fix some markdown issues | ||
for f in 2020-08-24.md 2020-09-08.md 2020-09-22.md; do | ||
sed -i.bak 's/]()/](#)/g' "$f" | ||
rm "$f.bak" | ||
done | ||
sed -i.bak \ | ||
-e 's|](conda.org)|](https://conda.org)|g' \ | ||
-e 's|](github.org)|](https://github.org)|g' \ | ||
"2020-09-08.md" | ||
rm 2020-09-08.md.bak | ||
|
||
popd |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
This directory is populated at build time by downloading all the minutes | ||
from conda-incubator/governance. See `/bin/populate-minutes`. Do not edit manually. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# Meeting minutes | ||
|
||
We hold biweekly meetings every second Wednesday from 17:00-18:00 (UTC). Feel free to stop by! | ||
Up-to-date invites are always available in the [calendar](/community/calendar). | ||
|
||
We encourage contributors to join the meetings and learn more about and from the community. | ||
|
||
## Setup | ||
|
||
The minutes are recorded in the [`conda-incubator/governance`][governance-repo] repository. | ||
|
||
We use a Github Actions [workflow][gha-workflow] to create an automated PR with the meeting notes | ||
template for each session, which is automatically published to our [HackMD team][hackmd-team] | ||
account. During the meeting, attendees will edit the HackMD document. After the meeting, the | ||
document is saved and the PR is synced with the changes by adding the `sync-hackmd-notes` label. | ||
Once satisfied, the PR is merged and the website will be updated with the new meeting notes. | ||
|
||
[gha-workflow]: https://github.com/conda-incubator/governance/actions/workflows/meeting-notes.yml | ||
[hackmd-team]: https://hackmd.io/@conda-community | ||
[governance-repo]: https://github.com/conda-incubator/governance | ||
|
||
## Minutes | ||
|
||
import DocCardList from '@theme/DocCardList'; | ||
|
||
<DocCardList /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,6 +35,10 @@ const config = { | |
}, | ||
], | ||
|
||
markdown: { | ||
format: "detect", | ||
}, | ||
|
||
presets: [ | ||
[ | ||
"classic", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters