From 09b7f38919c94c6e3a214f111d5e5d8171172fbc Mon Sep 17 00:00:00 2001 From: Matt Rosno Date: Wed, 8 Jan 2020 18:08:06 -0600 Subject: [PATCH] chore: remove labeler github action because it wasn't dependable (#4984) Co-authored-by: TJ Egan Co-authored-by: Akira Sudoh --- .github/ISSUE_TEMPLATE/accessibility-issue.md | 2 +- .github/ISSUE_TEMPLATE/bug-report.md | 4 +- .../feature-request-or-enhancement.md | 4 +- .github/ISSUE_TEMPLATE/question.md | 2 +- .github/labeler.yml | 123 ------------------ .github/workflows/labeler.yml | 13 -- 6 files changed, 6 insertions(+), 142 deletions(-) delete mode 100644 .github/labeler.yml delete mode 100644 .github/workflows/labeler.yml diff --git a/.github/ISSUE_TEMPLATE/accessibility-issue.md b/.github/ISSUE_TEMPLATE/accessibility-issue.md index 975d5c55fb4e..6bd8f7fc81dd 100644 --- a/.github/ISSUE_TEMPLATE/accessibility-issue.md +++ b/.github/ISSUE_TEMPLATE/accessibility-issue.md @@ -2,7 +2,7 @@ name: Accessibility Issue about: Report an accessibility or usability issue title: '' -labels: 'type: a11y, squad: system' +labels: 'type: a11y ♿' assignees: '' --- diff --git a/.github/ISSUE_TEMPLATE/bug-report.md b/.github/ISSUE_TEMPLATE/bug-report.md index 7c004b247455..0f5ee5ef1c83 100644 --- a/.github/ISSUE_TEMPLATE/bug-report.md +++ b/.github/ISSUE_TEMPLATE/bug-report.md @@ -1,8 +1,8 @@ --- -name: "Bug Report 🐛" +name: 'Bug Report 🐛' about: Something isn't working as expected? Here is the right place to report. title: '' -labels: "type: bug 🐛, squad: system" +labels: 'type: bug 🐛' assignees: '' --- diff --git a/.github/ISSUE_TEMPLATE/feature-request-or-enhancement.md b/.github/ISSUE_TEMPLATE/feature-request-or-enhancement.md index b051831f095b..0843b493a43e 100644 --- a/.github/ISSUE_TEMPLATE/feature-request-or-enhancement.md +++ b/.github/ISSUE_TEMPLATE/feature-request-or-enhancement.md @@ -1,8 +1,8 @@ --- -name: "Feature request or enhancement 💡" +name: 'Feature request or enhancement 💡' about: Suggest an idea for this project title: '' -labels: "type: enhancement 💡, squad: system" +labels: 'type: enhancement 💡' assignees: '' --- diff --git a/.github/ISSUE_TEMPLATE/question.md b/.github/ISSUE_TEMPLATE/question.md index 834bd1d96894..fc082dad54da 100644 --- a/.github/ISSUE_TEMPLATE/question.md +++ b/.github/ISSUE_TEMPLATE/question.md @@ -2,7 +2,7 @@ name: Question ❓ about: Usage question or discussion about Carbon components title: '' -labels: 'type: question ❓, squad: system' +labels: 'type: question ❓' assignees: '' --- diff --git a/.github/labeler.yml b/.github/labeler.yml deleted file mode 100644 index b9a7ce94aab2..000000000000 --- a/.github/labeler.yml +++ /dev/null @@ -1,123 +0,0 @@ -'squad: system': - - '*' - - '**/*' - -'package: browserslist-config-carbon': - - packages/browserslist-config-carbon/* - - packages/browserslist-config-carbon/**/* - -'package: bundler': - - packages/bundler/* - - packages/bundler/**/* - -'package: cli': - - packages/cli/* - - packages/cli/**/* - -'package: cli-reporter': - - packages/cli-reporter/* - - packages/cli-reporter/**/* - -'package: colors': - - packages/colors/* - - packages/colors/**/* - -'package: components': - - packages/components/* - - packages/components/**/* - -'package: elements': - - packages/elements/* - - packages/elements/**/* - -'package: eslint-config-carbon': - - packages/eslint-config-carbon/* - - packages/eslint-config-carbon/**/* - -'package: grid': - - packages/grid/* - - packages/grid/**/* - -'package: icon-build-helpers': - - packages/icon-build-helpers/* - - packages/icon-build-helpers/**/* - -'package: icon-helpers': - - packages/icon-helpers/* - - packages/icon-helpers/**/* - -'package: icons': - - packages/icons/* - - packages/icons/**/* - -'package: icons-angular': - - packages/icons-angular/* - - packages/icons-angular/**/* - -'package: icons-handlebars': - - packages/icons-handlebars/* - - packages/icons-handlebars/**/* - -'package: icons-react': - - packages/icons-react/* - - packages/icons-react/**/* - -'package: icons-vue': - - packages/icons-vue/* - - packages/icons-vue/**/* - -'package: import-once': - - packages/import-once/* - - packages/import-once/**/* - -'package: layout': - - packages/layout/* - - packages/layout/**/* - -'package: motion': - - packages/motion/* - - packages/motion/**/* - -'package: pictograms': - - packages/pictograms/* - - packages/pictograms/**/* - -'package: pictograms-react': - - packages/pictograms-react/* - - packages/pictograms-react/**/* - -'package: react': - - packages/react/* - - packages/react/**/* - -'package: react-hooks': - - packages/react-hooks/* - - packages/react-hooks/**/* - -'package: scss-generator': - - packages/scss-generator/* - - packages/scss-generator/**/* - -'package: sketch': - - packages/sketch/* - - packages/sketch/**/* - -'package: stylelint-config-elements': - - packages/stylelint-config-elements/* - - packages/stylelint-config-elements/**/* - -'package: text-utils': - - packages/text-utils/* - - packages/text-utils/**/* - -'package: themes': - - packages/themes/* - - packages/themes/**/* - -'package: type': - - packages/type/* - - packages/type/**/* - -'package: upgrade': - - packages/upgrade/* - - packages/upgrade/**/* diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml deleted file mode 100644 index 28d1296059b9..000000000000 --- a/.github/workflows/labeler.yml +++ /dev/null @@ -1,13 +0,0 @@ -name: 'Label pull requests' -on: - schedule: - - cron: '*/5 * * * *' -jobs: - labeler: - runs-on: ubuntu-latest - steps: - - uses: paulfantom/periodic-labeler@master - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - GITHUB_REPOSITORY: ${{ github.repository }} - LABEL_MAPPINGS_FILE: .github/labeler.yml