Skip to content
This repository was archived by the owner on Oct 29, 2022. It is now read-only.

Commit 8e88264

Browse files
committed
Merge branch 'main' into kjaymiller/issue10
2 parents 825e5e3 + a866b47 commit 8e88264

File tree

7 files changed

+208
-51
lines changed

7 files changed

+208
-51
lines changed
Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
name: Add Conference
2+
description: Add Conference dates, location, CFP and other information that you would like shared on the show and in the newsletter
3+
title: "[CONFERENCE] <CONFERENCE NAME>"
4+
labels: ['conference']
5+
assignees: ['kjaymiller', 'jonafato']
6+
body:
7+
- type: input
8+
id: conference_name
9+
attributes:
10+
label: Conference Name
11+
description: The name of the conference.
12+
placeholder: <CONFERENCE NAME>
13+
validations:
14+
required: true
15+
- type: input
16+
attributes:
17+
label: URL
18+
description: The URL of the conference.
19+
placeholder: https://example.com
20+
validations:
21+
required: true
22+
- type: input
23+
id: conference_dates
24+
attributes:
25+
label: Conference Dates
26+
description: The start and end date of the conference.
27+
placeholder: "YYYY-MM-DD - YYYY-MM-DD"
28+
validations:
29+
required: true
30+
- type: dropdown
31+
id: conference_type
32+
attributes:
33+
label: Conference Type
34+
description: Is the conference in-person online or both?
35+
options: ['both', 'in-person', 'online']
36+
validations:
37+
required: true
38+
- type: input
39+
id: conference_location
40+
attributes:
41+
label: Conference Location
42+
description: The location of the conference. Leave blank if online only
43+
placeholder: "CITY, <REGION>, COUNTRY"
44+
validations:
45+
required: false
46+
- type: input
47+
id: conference_cfp_url
48+
attributes:
49+
label: CFP URL
50+
description: The URL of the Call for Papers.
51+
placeholder: https://example.com
52+
validations:
53+
required: false
54+
- type: input
55+
id: conference_cfp_dates
56+
attributes:
57+
label: CFP Dates
58+
description: The start and end date of the Call for Papers.
59+
placeholder: "YYYY-MM-DD"
60+
validations:
61+
required: false
62+
- type: textarea
63+
id: conference_description
64+
attributes:
65+
label: Conference Description
66+
description: Add any pertinent information about the conference e.g. focuses, topics, talk-length
67+
placeholder: "This is a general python conference with open spaces and sprints"
68+
validations:
69+
required: false

.github/ISSUE_TEMPLATE/add_topic.yaml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
name: Add News Topic
2+
description: Add a topic that you would like shared on the show and in the newsletter
3+
title: "[Topic]: <TITLE OF POST>"
4+
labels: ["Content", ""]
5+
body:
6+
- type: input
7+
id: url
8+
attributes:
9+
label: URL
10+
description: Url of the source
11+
placeholder: ex. [email protected]
12+
validations:
13+
required: true
14+
- type: input
15+
id: date_published
16+
attributes:
17+
label: When was this post released
18+
description: Enter the date that this post was published.
19+
- type: textarea
20+
id: description
21+
attributes:
22+
label: Summary
23+
description: Provide a summary (2-5 sentences) of what the content is about
24+
placeholder: A thing happened that will affect the Python Community
25+
value: "A thing happened that will affect the Python Community"
26+
validations:
27+
required: true
28+
- type: checkboxes
29+
id: terms
30+
attributes:
31+
label: Code of Conduct
32+
description: By submitting this issue, you agree to follow our [Code of Conduct](https://example.com)
33+
options:
34+
- label: I agree to follow this project's Code of Conduct
35+
required: true

.github/ISSUE_TEMPLATE/episode-post-prep.md

Lines changed: 0 additions & 22 deletions
This file was deleted.
Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
name: Episode Post Prep
2+
description: There are things that need to happen at the end of an episode
3+
title: "[Publish] Python Community <EPISODE NUMBER>"
4+
labels: ['publish']
5+
assignees: ['kjaymiller', 'jonafato']
6+
body:
7+
- type: markdown
8+
attributes:
9+
value: "# Prior to Publishing"
10+
- type: checkboxes
11+
id: checklist
12+
attributes:
13+
label: "Use this checklist to walk through all the steps you'll need to complete for each episode"
14+
options:
15+
- label: Download the Audio/Video from StreamYard
16+
- label: Share the YouTube link with folks on social media
17+
- label: Break the video into chapters
18+
- label: Update Timestamps in Shownotes Post
19+
- label: Publish podcast episode
20+
- label: Add Github link/podcast url/and YouTube link to content
21+
- type: input
22+
id: episode_date
23+
attributes:
24+
label: Episode Date
25+
placeholder: "YYYY-MM-DD"
26+
validations:
27+
required: true
28+
- type: input
29+
id: shownotes_id
30+
attributes:
31+
label: Shownotes ID
32+
description: The ID from transitor.fm which you can get from the share url.
33+
validations:
34+
required: true
35+
- type: input
36+
id: youtube_id
37+
attributes:
38+
label: YouTube ID
39+
description: The ID from YouTube which you can get from the share url.
40+
validations:
41+
required: true
42+
- type: input
43+
id: issues
44+
attributes:
45+
label: Issues
46+
description: The Issues covered in the episode. Use the #<ISSUE_NUMBER> format.
47+
validations:
48+
required: true
49+
- type: input
50+
id: newsletter_publish_date
51+
attributes:
52+
label: Newsletter Publish Date/Time
53+
description: The date and time that the episode will be published in the newsletter.
54+
placeholder: "YYYY-MM-DDTHH:MMZ"
55+
validations:
56+
required: true
57+

.github/ISSUE_TEMPLATE/news-topic.md

Lines changed: 0 additions & 14 deletions
This file was deleted.

requirements.in

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
httpx
2+
jinja2
3+
render_engine

requirements.txt

Lines changed: 44 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,63 @@
1-
aiohttp==3.8.1
2-
aiosignal==1.2.0
1+
#
2+
# This file is autogenerated by pip-compile with python 3.10
3+
# To update, run:
4+
#
5+
# pip-compile
6+
#
37
anyio==3.6.1
4-
async-timeout==4.0.2
5-
attrs==22.1.0
8+
# via httpcore
69
certifi==2022.6.15
7-
charset-normalizer==2.1.1
10+
# via
11+
# httpcore
12+
# httpx
813
commonmark==0.9.1
9-
frozenlist==1.3.1
10-
github==1.2.7
14+
# via rich
1115
h11==0.12.0
16+
# via httpcore
1217
httpcore==0.15.0
18+
# via httpx
1319
httpx==0.23.0
20+
# via -r requirements.in
1421
idna==3.3
15-
Jinja2==3.1.2
22+
# via
23+
# anyio
24+
# rfc3986
25+
jinja2==3.1.2
26+
# via
27+
# -r requirements.in
28+
# render-engine
1629
markdown2==2.4.3
17-
MarkupSafe==2.1.1
30+
# via render-engine
31+
markupsafe==2.1.1
32+
# via jinja2
1833
more-itertools==8.14.0
19-
multidict==6.0.2
34+
# via render-engine
2035
pendulum==2.1.2
21-
Pygments==2.13.0
36+
# via render-engine
37+
pygments==2.13.0
38+
# via rich
2239
python-dateutil==2.8.2
40+
# via pendulum
2341
python-frontmatter==1.0.0
42+
# via render-engine
2443
python-slugify==6.1.2
44+
# via render-engine
2545
pytzdata==2020.1
26-
PyYAML==6.0
46+
# via pendulum
47+
pyyaml==6.0
48+
# via python-frontmatter
2749
render-engine==2022.7.2
28-
rfc3986==1.5.0
50+
# via -r requirements.in
51+
rfc3986[idna2008]==1.5.0
52+
# via httpx
2953
rich==12.5.1
54+
# via render-engine
3055
six==1.16.0
56+
# via python-dateutil
3157
sniffio==1.2.0
58+
# via
59+
# anyio
60+
# httpcore
61+
# httpx
3262
text-unidecode==1.3
33-
typing_extensions==4.3.0
34-
yarl==1.8.1
63+
# via python-slugify

0 commit comments

Comments
 (0)