-
-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add option to specify custom repo and token (#43)
* Add option to specify custom repo and token * Fix bold text
- Loading branch information
1 parent
44c6050
commit f6f5b34
Showing
4 changed files
with
49 additions
and
16 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 |
---|---|---|
@@ -1,14 +1,20 @@ | ||
name: 'Label Syncer' | ||
description: 'Sync GitHub labels in the declarative way.' | ||
author: 'micnncim' | ||
name: "Label Syncer" | ||
description: "Sync GitHub labels in the declarative way." | ||
author: "micnncim" | ||
inputs: | ||
manifest: | ||
description: 'File path of YAML manifest for labels' | ||
description: "File path of YAML manifest for labels" | ||
required: false | ||
default: ".github/labels.yml" | ||
repository: | ||
description: "The repo to sync labels on (defaults to current repo)" | ||
required: false | ||
token: | ||
description: "An alternative GitHub token to use instead" | ||
required: false | ||
default: '.github/labels.yml' | ||
runs: | ||
using: 'docker' | ||
image: 'Dockerfile' | ||
using: "docker" | ||
image: "Dockerfile" | ||
branding: | ||
icon: circle | ||
color: black |
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