Skip to content

Commit 4905575

Browse files
committed
Initial commit
0 parents  commit 4905575

4 files changed

Lines changed: 77 additions & 0 deletions

File tree

.github/ISSUE_TEMPLATE/1:1.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
---
2+
name: Weekly 1:1
3+
about: Template for our 1:1 chats
4+
title: Week of {{ date | date('MMMM Do') }}-{{ date | date("add", 4, "days") | date('MMMM Do') }}, {{ date | date('YYYY') }}
5+
labels: "1:1"
6+
assignees: # Add other person here
7+
---
8+
9+
### 🗣 What can we talk about?
10+
11+
- Thing to chat about
12+
13+
### 🎉 What can we celebrate?
14+
15+
- Thing to celebrate
16+
17+
### 🚧 What’s frustrating, blocking, or confusing you?
18+
19+
- Frustration, blocker, confusing thing
20+
21+
### 🥅 What are your goals for the week?
22+
23+
- Goal!
24+
25+
### 🗳 What feedback do you have for me or more broadly?
26+
27+
- Feedback

.github/workflows/1:1.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: 1 on 1
2+
on:
3+
schedule:
4+
- cron: 0 9 * * 1
5+
6+
jobs:
7+
create-sprint:
8+
runs-on: ubuntu-latest
9+
10+
steps:
11+
- name: Checkout workspace
12+
uses: actions/checkout@master
13+
- name: Create weekly 1:1 issue
14+
uses: JasonEtco/create-an-issue@v2.0.0
15+
env:
16+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
17+
with:
18+
filename: .github/ISSUE_TEMPLATE/1:1.md

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2020 Matthew Ferry
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Welcome your repository
2+
3+
This repository serves as a private space for 1:1 notes, document goals and growth milestones, or anything else worth sharing between you and your manager.
4+
5+
Out of the box, the [1:1 action](./.github/workflows/1:1.yml) creates a new issue every Monday using the [1:1 issue template](./.github/ISSUE_TEMPLATE/1:1.md).
6+
7+
## Configuration checklist
8+
- [ ] Be sure to create this repository as a private repository, preferably in your organization account so it's not tied to any one specific manager.
9+
- [ ] Update [the assignees value](./.github/ISSUE_TEMPLATE/1:1.md#L6) to include IC and manager usernames
10+
- [ ] Change [cron time](./.github/workflows/1:1.yml#L4) if you'd prefer a different day/time for the 1:1 action to run
11+
- [ ] Invite IC as collaborator

0 commit comments

Comments
 (0)