Skip to content

Commit fb6494d

Browse files
authored
Merge pull request #21 from hackthackathon/update-webpage
[metrics-ci] webpage auto-update
2 parents 3754c4a + 930076b commit fb6494d

4 files changed

Lines changed: 59 additions & 8 deletions

File tree

.github/workflows/gha-pr-add-project.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,11 @@ on:
55
types:
66
- labeled
77

8+
89
jobs:
910
auto_new_resource_add_pr:
1011
if: contains(github.event.issue.labels.*.name, 'accepted-project')
1112
runs-on: ubuntu-latest
12-
permissions:
13-
actions: write
14-
contents: write
15-
security-events: write
1613
steps:
1714
- name: Check Out Repository
1815
uses: actions/checkout@v4
@@ -40,4 +37,4 @@ jobs:
4037
A project that is contributed by the user through issue submission. It has triggered a GitHub Action workflow that generate this PR. Refer to issue #${{ github.event.issue.number }}.
4138
Merging this PR will close #${{ github.event.issue.number }}.
4239
delete-branch: true
43-
labels: new project
40+
labels: new project

myst.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ project:
1616
children:
1717
- file: organizers/getting-started.md
1818
- file: organizers/organizing-checklist.md
19+
- file: organizers/survey-template.md
1920
- title: Projects
2021
children:
2122
- pattern: 'projects/project-*'

organizers/survey-template.md

Lines changed: 54 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,68 @@ The following questions are related to your prior hackathon experience and your
2323
If you cannot recall the exact number please provide a rough estimate.
2424
- Short Answer (Number)
2525

26-
2. To what extent was your decision to participate in this hackathon motivated by... (multiple choice)
26+
2. To what extent was your decision to participate in this hackathon motivated by...
27+
- Multiple Choice
2728

2829
| Question | Not at All | To some extent | To a moderate extent | To a large extent | Completely |
2930
|---------- |---------- |---------- |---------- |---------- |---------- |
3031
| Having fun | | | | | |
3132
| Making something cool / Working on an interesting project idea | | | | | |
3233
| Learning about [PURPOSE] | | | | | |
34+
| [HACKATHON_THEME] | | | | | |
35+
| Meeting new people | | | | | |
36+
| Seeing what others are working on | | | | | |
37+
| Sharing my experience and expertise | | | | | |
38+
| Joining friends that participate | | | | | |
39+
| Dedicated time to get work done | | | | | |
40+
| Meeting new people | | | | | |
3341

42+
3. If your participation is motivated by other than the above reasons, please describe additional motivations below.
43+
- Short Answer
3444

45+
### Teamwork During this Hackathon
3546

47+
The following questions are related to your perception of the team you were a part of during this hackathon.
3648

49+
1. What was the name of your team / project?
50+
- Short answer
3751

52+
2. How many people were in your team (including yourself)?
53+
- Short answer (number)
54+
55+
3. Did your team use a code repository? If yes, please provide the URL of that repository below.
56+
- Short answer (URL)
57+
58+
4. Did your team use any other online resources to e.g. create documentation? If yes, please provide the URL of that resource below.
59+
- Short answer (URL)
60+
61+
5. Was there a team leader?
62+
A team leader is someone who provides guidance, instruction, direction and leadership to the team.
63+
- Multiple Choice
64+
- Potential answers
65+
- Yes, I was the team leader.
66+
- Yes, someone else was the team leader.
67+
- No, there was no clear leader in the team.
68+
69+
6. How well did you know your team members?
70+
- Multiple Choice
71+
| Question | Strongly disagree | Somewhat disagree | Neither agree nor disagree | Somewhat agree | Strongly agree |
72+
|---------- |---------- |---------- |---------- |---------- |---------- |
73+
| I knew my team members well. | | | | | |
74+
| I have collaborated with some of my team members before. | | | | | |
75+
| I have been close to some of my team members before. | | | | | |
76+
| I have socialized with some of my team members (outside of this hackathon) before. | | | | | |
77+
78+
79+
### Teamwork during this hackathon continued...
80+
81+
The following questions are related to your perception of the team you were a part of during this hackathon.
82+
83+
1. Would you describe your team process as more...
84+
85+
| Question | 1 | 2 | 3 | 4 | 5 |
86+
|---------- |---------- |---------- |---------- |---------- |---------- |
87+
| I knew my team members well. | | | | | |
88+
| I have collaborated with some of my team members before. | | | | | |
89+
| I have been close to some of my team members before. | | | | | |
90+
| I have socialized with some of my team members (outside of this hackathon) before. | | | | | |

scripts/generate_pr_from_issue.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,8 @@ def check_link_availability(test_url):
6363
title = issue['title'].replace('[Project Proposal]: ','')
6464
fname = title.replace(' ','_')
6565

66-
path = os.path.dirname('projects/project-{}.md'.format(fname))
67-
#os.makedirs(path, exist_ok=True)
66+
path = os.path.dirname('/projects/project-{}.md'.format(fname))
67+
os.makedirs(path, exist_ok=True)
6868
with open('{}/project-{}.md'.format(path,fname), "w") as f:
6969
f.write('## '+title+'\n\n'+issue['body'])
7070
print('wrote {}/project-{}.md'.format(path,fname))

0 commit comments

Comments
 (0)