From c6154c41d686b12bd0cd1d91afc841d49b99aa01 Mon Sep 17 00:00:00 2001 From: Kyle King Date: Wed, 30 Oct 2024 08:23:47 -0400 Subject: [PATCH] build: copier update Removes Github-Labeler --- .copier-answers.yml | 2 +- .github/ISSUE_TEMPLATE/bug_report.md | 2 -- .github/ISSUE_TEMPLATE/feature_request.md | 2 -- .github/ISSUE_TEMPLATE/question.md | 2 -- .github/labels.yml | 29 ------------------- .github/workflows/labeler.yml | 35 ----------------------- 6 files changed, 1 insertion(+), 71 deletions(-) delete mode 100644 .github/labels.yml delete mode 100644 .github/workflows/labeler.yml diff --git a/.copier-answers.yml b/.copier-answers.yml index a3947e54..ffabbcea 100644 --- a/.copier-answers.yml +++ b/.copier-answers.yml @@ -2,7 +2,7 @@ # Answer file maintained by Copier for: https://github.com/KyleKing/calcipy_template # DO NOT MODIFY THIS FILE. Edit by re-running copier and changing responses to the questions # Check into version control. -_commit: 2.1.1 +_commit: 2.2.0 _src_path: gh:KyleKing/calcipy_template author_email: dev.act.kyle@gmail.com author_name: Kyle King diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 38c00654..6f1804ad 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -1,8 +1,6 @@ --- name: Bug report about: Found a problem, us know! -title: '' -labels: 'Type: Bug' assignees: kyleking --- diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md index 4a0ce302..0a9d541d 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -1,8 +1,6 @@ --- name: Feature request about: Please share your ideas for calcipy! -title: '' -labels: 'Type: Feature' assignees: kyleking --- diff --git a/.github/ISSUE_TEMPLATE/question.md b/.github/ISSUE_TEMPLATE/question.md index cbc599a2..50a167fa 100644 --- a/.github/ISSUE_TEMPLATE/question.md +++ b/.github/ISSUE_TEMPLATE/question.md @@ -1,7 +1,5 @@ --- name: Question about: This is a general catch-all template -title: '' -labels: '' assignees: kyleking --- diff --git a/.github/labels.yml b/.github/labels.yml deleted file mode 100644 index fda6f94a..00000000 --- a/.github/labels.yml +++ /dev/null @@ -1,29 +0,0 @@ ---- -# GH Action https://github.com/crazy-max/ghaction-github-labeler -# Based on: https://github.com/crazy-max/ghaction-github-labeler/blob/master/.github/labels.yml -# Other Where Used: https://github.com/search?q=name+path%3A%2F.github+filename%3Alabels.yml&type=Code&ref=advsearch&l=&l= -# -# Style Guide: ../docs/STYLE_GUIDE.md - -- name: Needs Discussion - color: "#ff5722" - description: Ticket needs discussion and prioritization - from_name: help wanted -- name: "Type: Bug" - color: "#d73a4a" - description: Something isn't working - from_name: bug -- name: "Type: Documentation" - color: "#69cde9" - description: Documentation changes - from_name: good first issue -- name: "Type: Maintenance" - color: "#c5def5" - description: Chore including build/dep, CI, refactor, or perf -- name: "Type: Idea" - color: "#fbca04" - description: General idea or concept that could become a feature request -- name: "Type: Feature" - color: "#0075ca" - description: Clearly defined new feature request - from_name: enhancement diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml deleted file mode 100644 index 333c92d8..00000000 --- a/.github/workflows/labeler.yml +++ /dev/null @@ -1,35 +0,0 @@ ---- -# Docs: https://github.com/marketplace/actions/github-labeler -name: github_labeler - -# Will only be run each push or PR merge to the main branch -"on": - push: - branches: - - "main" - paths: - - ".github/labels.yml" - - ".github/workflows/labeler.yml" - pull_request: - paths: - - ".github/labels.yml" - - ".github/workflows/labeler.yml" - workflow_dispatch: null # For manual runs - -jobs: - labeler: - runs-on: ubuntu-latest - permissions: - # Issues and related comments, assignees, labels, and milestones. - contents: read - issues: write - steps: - - uses: actions/checkout@v4 - - - name: Run Labeler - uses: crazy-max/ghaction-github-labeler@v5 - with: - github-token: ${{ secrets.GITHUB_TOKEN }} - yaml-file: .github/labels.yml - skip-delete: false - dry-run: ${{ github.event_name == 'pull_request' }}