diff --git a/.github/keylabeler.yml b/.github/keylabeler.yml deleted file mode 100644 index a14a260..0000000 --- a/.github/keylabeler.yml +++ /dev/null @@ -1,21 +0,0 @@ -# Determines if we search the title (optional). Defaults to true. -matchTitle: false - -# Determines if we search the body (optional). Defaults to true. -matchBody: true - -# Determines if label matching is case sensitive (optional). Defaults to true. -caseSensitive: true - -# Explicit keyword mappings to labels. Form of match:label. Required. -labelMappings: - "Bug Report": bug - "- Bugfix Pull Request": bug - "Feature Idea": feature - "- Feature Pull Request": feature - "Documentation Report": documentation - "- Docs Pull Request": documentation - "- New Module Pull Request": new_module - "- New Plugin Pull Request": new_plugin - "- Refactoring Pull Request": refactor - "- Test Pull Request": testing \ No newline at end of file diff --git a/.github/labeler.yml b/.github/labeler.yml deleted file mode 100644 index 2129f74..0000000 --- a/.github/labeler.yml +++ /dev/null @@ -1,27 +0,0 @@ -tests: -- changed-files: - - any-glob-to-any-file: 'tests/**' - -docs_fragments: -- changed-files: - - any-glob-to-any-file: 'changelogs/fragments/*' - -plugin: -- changed-files: - - any-glob-to-any-file: 'plugins/**' - -module: -- changed-files: - - any-glob-to-any-file: 'plugins/modules/*' - -module_utils: -- changed-files: - - any-glob-to-any-file: 'plugins/module_utils/*' - -documentation: -- changed-files: - - any-glob-to-any-file: '*.md' - -github_actions: -- changed-files: - - any-glob-to-any-file: '.github/workflows/*' diff --git a/.github/repo-command.yml b/.github/repo-command.yml index d32625e..62c4682 100644 --- a/.github/repo-command.yml +++ b/.github/repo-command.yml @@ -39,7 +39,7 @@ labels: messages: welcomeContributor: | Thanks for your first pull request, @{user}! 🎉 - The team will review your changes soon. + A maintainer will review your changes soon. welcomeIssue: | Thanks for opening your first issue, @{user}! 🎉 requestMoreInfo: | diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml deleted file mode 100644 index bd44e7b..0000000 --- a/.github/workflows/labeler.yml +++ /dev/null @@ -1,13 +0,0 @@ -name: "Pull Request Labeler" -on: - pull_request_target: - types: [opened, synchronize, reopened] - -jobs: - labeler: - permissions: - contents: read - pull-requests: write - runs-on: ubuntu-latest - steps: - - uses: actions/labeler@v5