forked from kubeflow/notebooks
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Adem Baccara <71262172+Adembc@users.noreply.github.com>
- Loading branch information
Showing
14 changed files
with
21,455 additions
and
0 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,2 @@ | ||
coverage/ | ||
node_modules/ |
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,5 @@ | ||
# GitHub Action - conventional-release-labels | ||
|
||
This is a fork of the [`conventional-release-labels`](https://github.com/bcoe/conventional-release-labels) action that among other things, upgrades it to `node16`. | ||
|
||
The fork was based on the [`v1.3.1`](https://github.com/bcoe/conventional-release-labels/releases/tag/v1.3.1) release. |
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,29 @@ | ||
name: "conventional-release-labels" | ||
description: "automatically adds labels to pull requests based on Conventional Commits. Works with GitHub automated releases" | ||
inputs: | ||
token: | ||
description: "GitHub token for applying labels, defaults to using secrets.GITHUB_TOKEN" | ||
required: false | ||
default: ${{ github.token }} | ||
type_labels: | ||
description: "What labels to apply to different conventional commit types" | ||
required: false | ||
default: |- | ||
{ "feat": "feature", "fix": "fix", "breaking": "breaking" } | ||
ignored_types: | ||
description: "Conventional Commit types that should have ignore_label applied" | ||
required: false | ||
default: |- | ||
["chore"] | ||
ignore_label: | ||
description: "label to apply for ignored commits" | ||
required: false | ||
default: "ignore-for-release" | ||
|
||
branding: | ||
icon: "align-justify" | ||
color: "yellow" | ||
|
||
runs: | ||
using: "node16" | ||
main: "dist/index.js" |
Oops, something went wrong.