-
Notifications
You must be signed in to change notification settings - Fork 96
Expand file tree
/
Copy pathemulate.config.example.yaml
More file actions
171 lines (167 loc) · 4.07 KB
/
Copy pathemulate.config.example.yaml
File metadata and controls
171 lines (167 loc) · 4.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
tokens:
gho_test_token_admin:
login: admin
scopes: [repo, user, admin:org, admin:repo_hook]
gho_test_token_octocat:
login: octocat
scopes: [repo, user, read:user, "user:email", workflow]
github:
users:
- login: octocat
name: The Octocat
email: octocat@github.com
bio: I am the Octocat
company: GitHub
location: San Francisco
- login: developer
name: Developer
email: dev@example.com
orgs:
- login: my-org
name: My Organization
description: A test organization
repos:
- owner: octocat
name: hello-world
description: My first repository
language: JavaScript
topics: [hello, world]
auto_init: true
- owner: my-org
name: org-repo
description: An organization repository
language: TypeScript
auto_init: true
apps:
- app_id: 12345
slug: my-github-app
name: My GitHub App
private_key: |
-----BEGIN RSA PRIVATE KEY-----
...your PEM key...
-----END RSA PRIVATE KEY-----
permissions:
contents: read
issues: write
events: [push, pull_request, issues]
webhook_url: http://localhost:3000/webhooks/github
webhook_secret: my-webhook-secret
installations:
- installation_id: 100
account: octocat
repository_selection: all
oauth_apps:
- client_id: emu_github_client_id
client_secret: emu_github_client_secret
name: Code App
redirect_uris:
- http://localhost:3000/api/auth/callback/github
vercel:
users:
- username: developer
name: Developer
email: dev@example.com
teams:
- slug: my-team
name: My Team
projects:
- name: my-app
team: my-team
framework: nextjs
integrations:
- client_id: emu_vercel_client_id
client_secret: emu_vercel_client_secret
name: Code App (Vercel)
redirect_uris:
- http://localhost:3000/api/auth/callback/vercel
google:
users:
- email: testuser@gmail.com
name: Test User
- email: dev@example.com
name: Developer
oauth_clients:
- client_id: emu_google_client_id
client_secret: emu_google_client_secret
name: Code App (Google)
redirect_uris:
- http://localhost:3000/api/auth/callback/google
labels:
- id: Label_ops
user_email: testuser@gmail.com
name: Ops/Review
color_background: "#DDEEFF"
color_text: "#111111"
messages:
- id: msg_welcome
user_email: testuser@gmail.com
from: welcome@example.com
to: testuser@gmail.com
subject: Welcome to the Gmail emulator
body_text: You can now test Gmail, Calendar, and Drive flows locally.
label_ids:
- INBOX
- UNREAD
- CATEGORY_UPDATES
date: 2025-01-04T10:00:00.000Z
calendars:
- id: primary
user_email: testuser@gmail.com
summary: testuser@gmail.com
primary: true
selected: true
time_zone: UTC
calendar_events:
- id: evt_kickoff
user_email: testuser@gmail.com
calendar_id: primary
summary: Project Kickoff
start_date_time: 2025-01-10T09:00:00.000Z
end_date_time: 2025-01-10T09:30:00.000Z
drive_items:
- id: drv_docs
user_email: testuser@gmail.com
name: Docs
mime_type: application/vnd.google-apps.folder
parent_ids:
- root
linear:
api_keys: [lin_api_test]
organizations:
- id: org-1
name: My Org
teams:
- id: team-1
name: Engineering
key: ENG
organization: org-1
workflow_states:
- id: ws-1
name: Todo
type: unstarted
team: team-1
- id: ws-2
name: In Progress
type: started
team: team-1
users:
- id: user-1
name: Developer
email: dev@example.com
organization: org-1
labels:
- id: label-1
name: Bug
team: team-1
projects:
- id: project-1
name: Launch
team: team-1
lead: user-1
issues:
- id: issue-1
title: First issue
team: team-1
state: ws-1
assignee: user-1
labels: [label-1]