diff --git a/.github/labeler.yml b/.github/labeler.yml deleted file mode 100644 index 5849388e8ed..00000000000 --- a/.github/labeler.yml +++ /dev/null @@ -1,27 +0,0 @@ -version: 2 -appendOnly: true -labels: - - label: "platform" - files: - - "openbb_platform/.*" - - - label: "v4" - files: - - "openbb_platform/.*" - - - label: "enhancement" - branch: "^feature/.*" - - - label: "bug" - branch: "^hotfix/.*" - - - label: "bug" - branch: "^bugfix/.*" - - - label: "excel" - files: - - "website/content/excel/.*" - - - label: "breaking_change" - files: - - "openbb_platform/core/openbb_core/provider/standard_models/.*" diff --git a/.github/workflows/README.md b/.github/workflows/README.md index 41e64ee6d21..8705dfacce2 100644 --- a/.github/workflows/README.md +++ b/.github/workflows/README.md @@ -82,7 +82,7 @@ The second job, `markdown-link-check`, runs on an Ubuntu machine and performs li ## 🏷️ Pull Request Labels -Automatic labelling of pull requests. +Validate that pull requests do not include the `do not merge` label. ## 🚉 Integration test Platform (API) diff --git a/.github/workflows/gh-pr-labels.yml b/.github/workflows/gh-pr-labels.yml index 3973335cac0..08801b566e3 100644 --- a/.github/workflows/gh-pr-labels.yml +++ b/.github/workflows/gh-pr-labels.yml @@ -11,18 +11,9 @@ jobs: contents: read pull-requests: write steps: - # - uses: mheap/github-action-required-labels@v5 - # with: - # mode: minimum - # count: 1 - # labels: "guides, bug, build, docker, docs, feat XS, feat S, feat M, feat L, feat XL, help wanted, refactor, tests, dependencies, release" - uses: mheap/github-action-required-labels@0ac283b4e65c1fb28ce6079dea5546ceca98ccbe # v5 with: mode: exactly count: 0 labels: "do not merge" - - name: 🏷️ Label OpenBB Platform PRs - uses: srvaroa/labeler@e8fbb2561481ef6e711a770f0234e9379dc76892 # master - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}