Skip to content

Commit cd9e6ec

Browse files
authored
Merge branch 'main' into radu_new_workflows
2 parents 6971e00 + 3657187 commit cd9e6ec

56 files changed

Lines changed: 639 additions & 31 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

build_ts/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build_ts/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "warp-workflows",
3-
"version": "1.0.8",
3+
"version": "1.0.9",
44
"description": "Workflows used within Warp",
55
"main": "dist/warp-workflows.js",
66
"types": "dist/index.d.ts",

specs/android/push_deeplink_onto_android_device.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ tags:
99
description: Uses adb to push a deeplink onto an Android device.
1010
arguments:
1111
- name: your_app_package_name
12-
description: The package name of the app that you want to recieve the deeplink.
12+
description: The package name of the app that you want to receive the deeplink.
1313
default_value: com.my.app.package
1414
- name: deeplink
1515
description: The deeplink you want to send (eg. `app://open.my.app`)

specs/android/send_firebase_push_notification.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ tags:
1313
description: Uses adb to push a Firebase push notification to your local emulator
1414
arguments:
1515
- name: your_app_package_name
16-
description: The package name of the app that you want to recieve the notification. It has to have implemented the reciever for it to work.
16+
description: The package name of the app that you want to receive the notification. It has to have implemented the receiver for it to work.
1717
default_value: com.my.app.package
1818
- name: notification_title
1919
description: The title of the notification

specs/brew/install_a_specific_version_of_a_homebrew_formula.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ tags:
66
description: "Install a specific version of a formula using Homebrew. To list all available versions, you can run `brew search {{formula_name}}@`."
77
arguments:
88
- name: formula_name
9-
description: The fomula to install
9+
description: The formula to install
1010
default_value: ~
1111
- name: version_name
12-
description: "The version of the formula to install. You can ensure this version is availalble on homebrew by running `brew search {{formula_name}}`"
12+
description: "The version of the formula to install. You can ensure this version is available on homebrew by running `brew search {{formula_name}}`"
1313
default_value: ~
1414
source_url: "https://stackoverflow.com/questions/3987683/homebrew-install-specific-version-of-formula"
1515
author: Debilski
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
name: Optimize CosmWasm Project (Apple ARM Chips)
3+
command:
4+
docker run --rm -v "$(pwd)":/code
5+
--mount type=volume,source="$(basename "$(pwd)")_cache",target=/code/target
6+
--mount type=volume,source=registry_cache,target=/usr/local/cargo/registry
7+
cosmwasm/rust-optimizer-arm64:0.12.8
8+
tags:
9+
- cosmwasm
10+
description: >
11+
Optimize a CosmWasm smart contract project. If a workspace with multiple
12+
contracts, use workspace-specific version. Requires Docker to be installed
13+
and running. Uses the experimental arm64 variant for use with Apple's chips
14+
(M1 & M2 Macs, etc).
15+
source_url: https://github.com/CosmWasm/rust-optimizer
16+
author: chadoh
17+
author_url: https://chadoh.com
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
---
2+
name: Optimize CosmWasm Workspace Project (Apple ARM Chips)
3+
command: >
4+
docker run --rm -v "$(pwd)":/code
5+
--mount type=volume,source="$(basename "$(pwd)")_cache",target=/code/target
6+
--mount type=volume,source=registry_cache,target=/usr/local/cargo/registry
7+
cosmwasm/workspace-optimizer-arm64:0.12.8
8+
tags:
9+
- cosmwasm
10+
description: >
11+
Optimize a CosmWasm project that is organized as a workspace with multiple
12+
member contracts. Requires Docker to be installed and running. Uses the
13+
experimental arm64 variant for use with Apple's chips (M1 & M2 Macs, etc).
14+
source_url: https://github.com/CosmWasm/rust-optimizer
15+
author: chadoh
16+
author_url: https://chadoh.com
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
name: Optimize CosmWasm Workspace Project
3+
command: >
4+
docker run --rm -v "$(pwd)":/code
5+
--mount type=volume,source="$(basename "$(pwd)")_cache",target=/code/target
6+
--mount type=volume,source=registry_cache,target=/usr/local/cargo/registry
7+
cosmwasm/workspace-optimizer:0.12.10
8+
tags:
9+
- cosmwasm
10+
description: >
11+
Optimize a CosmWasm project that is organized as a workspace with multiple
12+
member contracts. Requires Docker to be installed and running.
13+
source_url: https://github.com/CosmWasm/rust-optimizer
14+
author: chadoh
15+
author_url: https://chadoh.com
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
---
2+
name: Optimize CosmWasm Project
3+
command:
4+
docker run --rm -v "$(pwd)":/code
5+
--mount type=volume,source="$(basename "$(pwd)")_cache",target=/code/target
6+
--mount type=volume,source=registry_cache,target=/usr/local/cargo/registry
7+
cosmwasm/rust-optimizer:0.12.10
8+
tags:
9+
- cosmwasm
10+
description: >
11+
Optimize a CosmWasm smart contract project. If a workspace with multiple
12+
contracts, use workspace-specific version. Requires Docker to be installed
13+
and running.
14+
source_url: https://github.com/CosmWasm/rust-optimizer
15+
author: chadoh
16+
author_url: https://chadoh.com

specs/du/find_biggest_files.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
---
2+
# The name of the workflow.
3+
name: Find the largest 10 files in a directory
4+
# The corresponding command for the workflow. Any arguments should be surrounded with two curly braces. E.g `command {{arg}}`.
5+
command: |-
6+
du -ah {{directory}} | sort -hr | head -n 10
7+
# Any tags that the workflow should be categorized with.
8+
tags:
9+
- du
10+
# A description of the workflow.
11+
description: Uses 'du' command to find file and directory sizes in the current working directory, then sorts by size and displays 10 largest files
12+
# List of arguments within the command.
13+
arguments:
14+
# Name of the argument within the command. This must exactly match the name of the argument
15+
# within the command (without the curly braces).
16+
- name: directory
17+
# The description of the argument.
18+
description: The name of the directory where you want to find files
19+
# The default value for the argument.
20+
default_value: .
21+
# The source URL for where the workflow was generated from, if any.
22+
source_url: "https://linuxhandbook.com/find-biggest-files-linux/"
23+
# The author of the workflow.
24+
author: Christopher Murray
25+
# The URL of original author of the Workflow. For example, if this workflow was generated from StackOverflow, the `author_url` would be the StackOverflow author's profile page.
26+
author_url: "https://linuxhandbook.com/find-biggest-files-linux/"
27+
# The valid shells where this workflow should be active. If valid for all shells, this can be left empty.
28+
# See FORMAT.md for the full list of accepted values.
29+
shells: []

0 commit comments

Comments
 (0)