Skip to content

Commit 003f4dd

Browse files
Fix capitalization of labels & column name in Github actions (#944)
1 parent 732f65a commit 003f4dd

File tree

7 files changed

+9
-8
lines changed

7 files changed

+9
-8
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
name: Bug report
33
about: Create a report to help us improve our project
4-
labels: bug, sev-1
4+
labels: "bug, priority: low"
55
---
66

77
<!-- Hello! Please read the [Contributing Guidelines](CONTRIBUTING.md) before submitting an issue. -->

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
name: Feature request
33
about: Describe the feature you would like added
4-
labels: feature, sev-1
4+
labels: "feature, priority: low"
55
---
66

77
<!-- Hello! Please read the [Contributing Guidelines](CONTRIBUTING.md) before submitting an issue. -->

.github/ISSUE_TEMPLATE/new_component.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
name: New component
33
about: Outline the requirements for a new component.
4-
labels: Design System, new component request, sev-1
4+
labels: "design system, new component request, priority: low"
55
---
66

77
# Component name:

.github/ISSUE_TEMPLATE/update_component.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
name: Update existing component
33
about: Outline the update requirements for an existing component.
4-
labels: Design System, update component request, sev-1
4+
labels: "design system, update component request, priority: low"
55
---
66

77
# Component name:

.github/workflows/automerge.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ jobs:
1515
uses: "pascalgn/automerge-action@4536e8847eb62fe2f0ee52c8fa92d17aa97f932f"
1616
env:
1717
GITHUB_TOKEN: "${{ secrets.ACTIONS }}"
18-
MERGE_LABELS: "Ready to merge,!work in progress!,!blocked,!Needs: code updates,!Needs: additional info,!Needs: AT updates,!Needs: changelog,!Ready: branch testing,!Ready: browser testing"
18+
MERGE_LABELS: "ready to merge,!work in progress!,!blocked,!needs: code updates,!needs: additional info,!needs: AT updates,!needs: changelog,!ready: branch testing,!ready: browser testing"
1919
MERGE_REMOVE_LABELS: Ready to merge
2020
MERGE_METHOD: squash
2121
MERGE_COMMIT_MESSAGE: "pull-request-title"
2222
MERGE_RETRIES: 3
2323
MERGE_RETRY_SLEEP: 10000
24-
UPDATE_LABELS: "Ready to merge,!work in progress!,!blocked"
24+
UPDATE_LABELS: "ready to merge,!work in progress!,!blocked"
2525
UPDATE_METHOD: rebase

.github/workflows/project.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
env:
1010
GITHUB_TOKEN: ${{ secrets.ACTIONS }}
1111
GITHUB_PROJECT_URL: https://github.com/orgs/github/projects/2
12-
GITHUB_PROJECT_COLUMN_NAME: Needs discovery
12+
GITHUB_PROJECT_COLUMN_NAME: Backlog
1313
- uses: takanabe/[email protected]
1414
if: github.event.action == 'labeled' && (github.event_name == 'issues' && github.event.issue.state == 'open' && contains(github.event.issue.labels.*.name, 'blocked')) || (github.event_name == 'pull_request' && github.event.pull_request.state == 'open' && contains(github.event.pull_request.labels.*.name, 'blocked'))
1515
env:

CHANGELOG-prerelease.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@
1212
- Update paths to built-in sets: (#723)
1313
- Storybook icon listing: (#728)
1414
- Icon panel storybook: (#719)
15-
- [](https://github.com/patternfly/patternfly-elements/commit/) fix: pfe-modal removing hidden attribute (#924)
15+
- [732f65a](https://github.com/patternfly/patternfly-elements/commit/732f65ada3383f6d04deb6670d82eb80d525d8ff) fix: pfe-modal removing hidden attribute (#924)
16+
- []() feat: Adjust github labels and project board names in automation tasks and workflows
1617

1718
## Prerelease 49 ( 2020-05-29 )
1819

0 commit comments

Comments
 (0)