-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #16 from yogevbd/descriptionSupport
Add description text support
- Loading branch information
Showing
4 changed files
with
64 additions
and
37 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 |
---|---|---|
@@ -1,13 +1,14 @@ | ||
name: Enforce PR labels for Github Actions | ||
name: Enforce PR labels | ||
|
||
on: | ||
pull_request: | ||
types: [opened, labeled, unlabeled] | ||
types: [labeled, unlabeled, opened, edited, synchronize] | ||
jobs: | ||
enforce-label: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: yogevbd/enforce-label-action@master | ||
with: | ||
REQUIRED_LABELS_ANY: "bug,enhancement,feature" | ||
REQUIRED_LABELS_ANY: "bug,enhancement,skip-changelog" | ||
BANNED_LABELS: "banned" | ||
REQUIRED_LABELS_ANY_DESCRIPTION: "Select at least one label ['bug','enhancement','feature']" |
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,28 +1,33 @@ | ||
# Enforce PR label | ||
# Enforce PR labels | ||
|
||
Enforce choosing label before merging PR. Usefull for generating automatic changelog and release notes with `github-release-notes` | ||
Enforce assigning labels before merging PR's. Usefull for generating automatic changelog and release notes with `github-release-notes` | ||
|
||
## Example usage | ||
Create `.github/workflows/enforce-labels.yml` containing: | ||
|
||
```yml | ||
name: Require PR label | ||
name: Enforce PR labels | ||
|
||
on: | ||
pull_request: | ||
types: [opened, labeled, unlabeled] | ||
|
||
types: [labeled, unlabeled, opened, edited, synchronize] | ||
jobs: | ||
require-label: | ||
enforce-label: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: yogevbd/enforce-label-action@2.0.0 | ||
- uses: yogevbd/enforce-label-action@2.1.0 | ||
with: | ||
REQUIRED_LABELS_ANY: "bug,enhancement,wontfix" | ||
REQUIRED_LABELS_ALL: "required" | ||
REQUIRED_LABELS_ANY: "bug,enhancement,skip-changelog" | ||
REQUIRED_LABELS_ANY_DESCRIPTION: "Select at least one label ['bug','enhancement','skip-changelog']" | ||
BANNED_LABELS: "banned" | ||
|
||
|
||
``` | ||
**`REQUIRED_LABELS_ANY`**: Force PR's to have at least one label, accepts multiple labels seperated by a comma. | ||
**`REQUIRED_LABELS_ALL`**: Force PR's to have all labels, accepts multiple labels seperated by a comma. | ||
**`BANNED_LABELS`**: Prevent PR's with those labels to be merged, accepts multiple labels seperated by a comma. | ||
|
||
### Descriptions | ||
**`REQUIRED_LABELS_ANY_DESCRIPTION`**: Controls the required any labels failure description. Default is `Please select one of the required labels for this PR: ${requiredLabelsAny}`. | ||
**`REQUIRED_LABELS_ALL_DESCRIPTION`**: Controls the required all labels failure description. Default is `All labels are required for this PR: ${requiredLabelsAll}`. | ||
**`BANNED_LABELS_DESCRIPTION`**: Controls the banned failure description. Default is `${bannedLabel.name} label is banned`. |
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,13 +1,19 @@ | ||
name: 'Enforce PR labels for Github Actions' | ||
description: 'Enforce PR labels for Github Actions' | ||
name: 'Enforce PR labels' | ||
description: 'Enforce PR labels' | ||
author: 'Yogev Ben David' | ||
runs: | ||
using: 'docker' | ||
image: 'Dockerfile' | ||
inputs: | ||
REQUIRED_LABELS_ANY: | ||
description: 'Require at least one label' | ||
REQUIRED_LABELS_ANY_DESCRIPTION: | ||
description: 'Require at least one label description' | ||
REQUIRED_LABELS_ALL: | ||
description: 'Require all labels' | ||
REQUIRED_LABELS_ALL_DESCRIPTION: | ||
description: 'Require all labels description' | ||
BANNED_LABELS: | ||
description: 'Banned' | ||
description: 'Banned' | ||
BANNED_LABELS_DESCRIPTION: | ||
description: 'Banned description' |
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