-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 4.0.0-0.1.0 : Add fantom network #173 * Add fantom network (fantom-main) to Network type in interfaces.ts and networks object in defaults.ts * Update version * 4.0.0-0.1.1 - Test whether localStorage is accessible before performing operations (#172) * 4.1.0 Release - Develop (#175) * Update version * Add gasGwei values * Feature/ws simulate (#178) 4.1.0-0.1.0: Handles websocket simulation requests * DEVELOP - Release/4.2.0 (#180) 4.2.0 Release * 4.2.0-0.1.0 [Feature] Error Handling for UNSUPPORTED_CHAIN_MSG (#186) * 4.2.0-0.1.0 [ feature ] : Mumbai testnet support (#185) * add support for matic-mumbai * add support for matic-mumbai * add support for matic-mumbai * v4.3.0 * Bump ajv from 6.12.2 to 6.12.6 (#182) Bumps [ajv](https://github.com/ajv-validator/ajv) from 6.12.2 to 6.12.6. - [Release notes](https://github.com/ajv-validator/ajv/releases) - [Commits](ajv-validator/ajv@v6.12.2...v6.12.6) --- updated-dependencies: - dependency-name: ajv dependency-type: indirect ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump minimist from 1.2.5 to 1.2.6 (#179) Bumps [minimist](https://github.com/substack/minimist) from 1.2.5 to 1.2.6. - [Release notes](https://github.com/substack/minimist/releases) - [Commits](https://github.com/substack/minimist/compare/1.2.5...1.2.6) --- updated-dependencies: - dependency-name: minimist dependency-type: indirect ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Create issue-to-notion.yml (#177) * 4.1.0 Release - Master (#174) * 4.0.0-0.1.0 : Add fantom network #173 * Add fantom network (fantom-main) to Network type in interfaces.ts and networks object in defaults.ts * Update version * 4.0.0-0.1.1 - Test whether localStorage is accessible before performing operations (#172) * Update version * Add gasGwei values Co-authored-by: Aaron Barnard <[email protected]> Co-authored-by: Arseniy Ivanov <[email protected]> * Create issue-to-notion.yml Co-authored-by: Adam Carpenter <[email protected]> Co-authored-by: Aaron Barnard <[email protected]> Co-authored-by: Arseniy Ivanov <[email protected]> * 4.2.0-0.2.0: [enhancement] - Expose Watched Items (#191) * Expose watchedItems * Increment version * Fix eventCode error Co-authored-by: Aaron Barnard <[email protected]> Co-authored-by: Adam Carpenter <[email protected]> Co-authored-by: Arseniy Ivanov <[email protected]> Co-authored-by: Julie <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Taylor Dawson <[email protected]>
- Loading branch information
1 parent
4499d2f
commit e79b150
Showing
12 changed files
with
209 additions
and
111 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,30 @@ | ||
name: Github issue -> Notion card | ||
on: | ||
workflow_dispatch: | ||
issues: | ||
types: [opened] | ||
jobs: | ||
issue: | ||
name: "Issue to Notion" | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- run: | | ||
people=$(for i in $(echo $NOTION_USER_IDS | tr "," " "); do echo -n '{"object":"user","id":"'$i'"},'; done) | ||
curl 'https://api.notion.com/v1/pages' \ | ||
-H 'Authorization: Bearer '"$NOTION_TOKEN"'' \ | ||
-H "Content-Type: application/json" \ | ||
-H "Notion-Version: 2022-02-22" \ | ||
--data '{"parent":{"type":"database_id","database_id":"'"$DATABASE_ID"'"},"icon":{"type":"emoji","emoji":"🐛"},"properties":{"Name":{"type":"title","title":[{"type":"text","text":{"content":"'"$TITLE"'"}}]},"Assigned":{"people":['${people:0:-1}']},"Status":{"select":{"name":"'"$STATUS"'"}},"Type":{"multi_select":[{"name":"bug"}]},"Project":{"multi_select":[{"name":"'"$PROJECT_NAME"'"}]}},"children":[{"object":"block","type":"bookmark","bookmark":{"url":"'"$ISSUE_URL"'"}}]}' | ||
env: | ||
NOTION_TOKEN: ${{ secrets.NOTION_TOKEN }} | ||
STATE: ${{ github.event.issue.state }} | ||
ISSUE_URL: ${{ github.event.issue.html_url }} | ||
TITLE: ${{ github.event.issue.title }} | ||
STATUS: Current Sprint | ||
# Product Work Board | ||
DATABASE_ID: 29876f9a9b864ca39a984f42e17fd345 | ||
PROJECT_NAME: SDK | ||
# User ids of who to assign the card to in notion: Taylor, Adam, Aaron | ||
NOTION_USER_IDS: f6cbb362-4908-4138-9ef0-434003d9a9f8,8a3a2287-5d2c-4665-906d-02ae9a113340,3b407adf-6552-40de-b22f-5efa852c34a2 | ||
shell: bash |
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
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
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
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
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
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
Oops, something went wrong.