aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/auto-assign-issues.yml31
1 files changed, 0 insertions, 31 deletions
diff --git a/.github/workflows/auto-assign-issues.yml b/.github/workflows/auto-assign-issues.yml
deleted file mode 100644
index 8cc7a238..00000000
--- a/.github/workflows/auto-assign-issues.yml
+++ /dev/null
@@ -1,31 +0,0 @@
-name: Automatically assign issues to Issue Triaging project
-
-on:
- issues:
- types: [opened]
-
-env:
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
-
-jobs:
- assign-issue:
- runs-on: ubuntu-latest
- name: Assign to Issue Triaging prjoect
- steps:
- - name: Assign new issues to triaging project
- uses: srggrs/assign-one-project-github-action@1.2.1
- if: github.event.action == 'opened'
- env:
- GITHUB_TOKEN: ${{ secrets.PAT }}
- with:
- project: "https://github.com/williamboman/mason.nvim/projects/1"
- column_name: "Needs triage"
-
- - name: Create a PR comment
- uses: peter-evans/create-or-update-comment@v1
- if: contains(github.event.issue.labels.*.name, 'new-package-request')
- with:
- token: ${{ secrets.PAT }}
- issue-number: ${{ github.event.issue.number }}
- body: |
- Hello! Pull requests are always very welcomed to add new packages. If the distribution of the package is simple, the installation will most likely be so as well. See [CONTRIBUTING.md](https://github.com/williamboman/mason.nvim/blob/main/CONTRIBUTING.md) and the [API reference](https://github.com/williamboman/mason.nvim/blob/main/doc/reference.md) for more details! You may also use existing packages as reference.