-
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.
- Loading branch information
1 parent
c92eb70
commit 97b1aa6
Showing
10 changed files
with
209 additions
and
164 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
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,15 @@ | ||
runtime: plugin | ||
action: | ||
title: "Keyring: Log in" | ||
description: >- | ||
Logs in to services like git, docker, etc. | ||
options: | ||
- name: url | ||
title: URL | ||
default: "" | ||
- name: username | ||
title: Username | ||
default: "" | ||
- name: password | ||
title: Password | ||
default: "" |
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 @@ | ||
runtime: plugin | ||
action: | ||
title: "Keyring: Log out" | ||
description: >- | ||
Logs out from a service | ||
arguments: | ||
- name: url | ||
title: URL | ||
description: URL to log out | ||
minLength: 1 | ||
options: | ||
- name: all | ||
title: All | ||
description: Logs out from all services | ||
type: boolean | ||
default: false |
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 @@ | ||
runtime: plugin | ||
action: | ||
title: "Keyring: Purge" | ||
description: Remove existing keyring file |
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,14 @@ | ||
runtime: plugin | ||
action: | ||
title: "Keyring: Set" | ||
description: >- | ||
Store new key-value pair to keyring | ||
arguments: | ||
- name: key | ||
title: Key | ||
description: Key of the value | ||
required: true | ||
minLength: 1 | ||
- name: value | ||
title: Value | ||
description: Value |
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 @@ | ||
runtime: plugin | ||
action: | ||
title: "Keyring: Unset" | ||
description: >- | ||
Removes key-value pair from keyring | ||
arguments: | ||
- name: key | ||
title: Key | ||
description: Key to delete | ||
minLength: 1 | ||
options: | ||
- name: all | ||
title: All | ||
description: "Removes all key-pairs" | ||
type: boolean | ||
default: false |
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.