We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f65502 commit 428d9d2Copy full SHA for 428d9d2
.github/workflows/require-label.yml
@@ -13,7 +13,7 @@ jobs:
13
with:
14
github-token: ${{ secrets.GITHUB_TOKEN }}
15
script: |
16
- const requiredLabels = ['housekeeping', 'feature', 'bugfix', 'dependencies', 'feature-cli', 'feature-plugin', 'bugfix-cli', 'bugfix-plugin'];
+ const requiredLabels = ['housekeeping', 'feature', 'bugfix', 'dependencies', 'feature-cli', 'feature-plugin', 'bugfix-cli', 'bugfix-plugin', 'changelog'];
17
const labels = context.payload.pull_request.labels.map(label => label.name);
18
const hasRequiredLabel = labels.some(label => requiredLabels.includes(label));
19
if (!hasRequiredLabel) {
0 commit comments