-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into styling-logo
- Loading branch information
Showing
115 changed files
with
2,603 additions
and
346 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
--- | ||
name: Bug report | ||
about: Report any bugs or unexpected behaviour in the tutorials site | ||
title: "bug: " | ||
labels: bug, track:maintenance | ||
assignees: "" | ||
--- | ||
|
||
### Problem | ||
|
||
A clear and concise description of what the bug is. | ||
|
||
### To reproduce | ||
|
||
If you can reproduce the behaviour, steps to reproduce: | ||
|
||
1. Go to '...' | ||
2. Click on '....' | ||
3. Scroll down to '....' | ||
4. See error | ||
|
||
### Expected behaviour | ||
|
||
A clear and concise description of what you expected to happen. | ||
|
||
### Screenshots/logs | ||
|
||
If applicable, add screenshots or logs to help explain your problem. | ||
|
||
### tutorial version/commit hash | ||
|
||
State the version of tutorials where you've encountered the bug or, if built off a specific commit, the relevant commit hash. | ||
|
||
- e.g. `v0.9` or `ed53bcd` | ||
|
||
### Additional context | ||
|
||
Add any other context about the problem here. |
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,4 @@ | ||
contact_links: | ||
- name: Questions & Support Requests | ||
url: https://discord.gg/cowprotocol | ||
about: Ask in the CoW Protocol Discord |
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,27 @@ | ||
--- | ||
name: Feature request | ||
about: Suggest an idea for the tutorials (not currently covered) | ||
title: "feat: " | ||
labels: track:production | ||
assignees: "" | ||
--- | ||
|
||
### Problem | ||
|
||
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] | ||
|
||
### Suggested solution | ||
|
||
A clear and concise description of what you want to happen. | ||
|
||
### Alternatives considered | ||
|
||
A clear and concise description of any alternative solutions or features you've considered. | ||
|
||
### Additional context | ||
|
||
Add any other context or screenshots about the feature request here. | ||
|
||
### Acceptance criteria | ||
|
||
A list of tasks that need to be done for the issue to be considered resolved. |
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,19 @@ | ||
--- | ||
name: Improvement | ||
about: Suggest improvements to the tutorials. | ||
title: "chore:" | ||
labels: track:maintenance | ||
assignees: "" | ||
--- | ||
|
||
### Background | ||
|
||
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]; There is a spelling error in [...]; It's difficult to understand the tutorial in [...] | ||
|
||
### Details | ||
|
||
A clear and concise description of what you want to happen. | ||
|
||
### Acceptance criteria | ||
|
||
A list of tasks that need to be done for the issue to be considered resolved. |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,16 @@ | ||
# Description | ||
|
||
<!--- Describe your changes to provide context for reviewers, including why it is needed --> | ||
|
||
# Changes | ||
|
||
<!-- List of detailed changes (how the change is accomplished) --> | ||
|
||
- [ ] ... | ||
- [ ] ... | ||
|
||
<!-- | ||
## Related Issues | ||
Fixes # | ||
--> |
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,16 @@ | ||
name: Add new issues to project board | ||
|
||
on: | ||
issues: | ||
types: [opened] | ||
|
||
jobs: | ||
add-to-project: | ||
if: github.repository_owner == 'cowprotocol' | ||
name: Add issue to project | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/[email protected] | ||
with: | ||
project-url: https://github.com/orgs/cowprotocol/projects/8 | ||
github-token: ${{ secrets.ADD_TO_PROJECT_PAT }} |
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,23 @@ | ||
name: "cla" | ||
|
||
on: | ||
issue_comment: | ||
types: [created] | ||
pull_request_target: | ||
types: [opened, closed, synchronize] | ||
|
||
jobs: | ||
cla: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: "CLA Assistant" | ||
if: ((github.event.comment.body == 'recheck' || github.event.comment.body == 'I have read the CLA Document and I hereby sign the CLA') || github.event_name == 'pull_request_target') && github.repository_owner == 'cowprotocol' && github.repository != 'cowprotocol/cla' | ||
uses: contributor-assistant/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
PERSONAL_ACCESS_TOKEN : ${{ secrets.ORG_TOKEN }} | ||
with: | ||
branch: 'cla-signatures' | ||
path-to-signatures: 'signatures/version1/cla.json' | ||
path-to-document: 'https://github.com/cowprotocol/cla/blob/main/CLA.md' | ||
allowlist: '*[bot]' |
This file was deleted.
Oops, something went wrong.
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
5 changes: 0 additions & 5 deletions
5
content/tutorial/01-cow-protocol/01-orders/01-sign-order/README.md
This file was deleted.
Oops, something went wrong.
26 changes: 0 additions & 26 deletions
26
content/tutorial/01-cow-protocol/01-orders/01-sign-order/app-a/src/lib/run.ts
This file was deleted.
Oops, something went wrong.
5 changes: 0 additions & 5 deletions
5
content/tutorial/01-cow-protocol/01-orders/02-app-data/README.md
This file was deleted.
Oops, something went wrong.
27 changes: 0 additions & 27 deletions
27
content/tutorial/01-cow-protocol/01-orders/02-app-data/app-a/src/lib/run.ts
This file was deleted.
Oops, something went wrong.
5 changes: 0 additions & 5 deletions
5
content/tutorial/01-cow-protocol/01-orders/04-get-quote/README.md
This file was deleted.
Oops, something went wrong.
33 changes: 0 additions & 33 deletions
33
content/tutorial/01-cow-protocol/01-orders/04-get-quote/app-a/src/lib/run.ts
This file was deleted.
Oops, something went wrong.
5 changes: 0 additions & 5 deletions
5
content/tutorial/01-cow-protocol/02-batch-auction/01-apply-to-auction/README.md
This file was deleted.
Oops, something went wrong.
3 changes: 0 additions & 3 deletions
3
content/tutorial/01-cow-protocol/02-batch-auction/01-apply-to-auction/app-a/src/lib/code.ts
This file was deleted.
Oops, something went wrong.
3 changes: 0 additions & 3 deletions
3
content/tutorial/01-cow-protocol/02-batch-auction/01-apply-to-auction/app-b/src/lib/code.ts
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.