aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorEric Cheng <[email protected]>2022-04-03 08:16:21 -0400
committerGitHub <[email protected]>2022-04-03 12:16:21 +0000
commit77115d4d13d3ed6b4ead76d3d28e9c989b80c4d6 (patch)
tree3c0149a33bee1882aeed31cdbd9786f04da39981 /.github/workflows
parent0757d48f6e36a2faa6847b2d4138cc16b0538eff (diff)
downloadfaker-77115d4d13d3ed6b4ead76d3d28e9c989b80c4d6.tar.xz
faker-77115d4d13d3ed6b4ead76d3d28e9c989b80c4d6.zip
chore: remove issue-labeling.yml (#763)
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/issue-labeling.yml32
1 files changed, 0 insertions, 32 deletions
diff --git a/.github/workflows/issue-labeling.yml b/.github/workflows/issue-labeling.yml
deleted file mode 100644
index ea66bbd2..00000000
--- a/.github/workflows/issue-labeling.yml
+++ /dev/null
@@ -1,32 +0,0 @@
-name: Issue Labeling
-
-on:
- issues:
- types: [labeled]
-
-jobs:
- reply-labeled:
- runs-on: ubuntu-latest
- steps:
- - name: contribution welcome
- # If the issue is labeled with 'help wanted', a comment will be posted
- if: github.event.label.name == 'help wanted'
- uses: actions-cool/issues-helper@v3
- with:
- actions: 'welcome, remove-labels'
- token: ${{ secrets.GITHUB_TOKEN }}
- issue-number: ${{ github.event.issue.number }}
- body: |
- Hello @${{ github.event.issue.user.login }}. We like your proposal/feedback and would appreciate a contribution via a Pull Request by you or another community member. We thank you in advance for your contribution and are looking forward to reviewing it!
- labels: 'pending triage'
-
- - name: remove pending
- # If the issue is given either the 'enhancement' or 'bug' label, the 'pending triage' label will be removed
- # Issues without the label 'pending triage' are filtered with the third part of the condition, since the label does not have to be removed
- if: github.event.label.name == 'enhancement' || github.event.label.name == 'bug' || (contains(github.event.label.name, 'pending triage') == false)
- uses: actions-cool/issues-helper@v3
- with:
- actions: 'remove-labels'
- token: ${{ secrets.GITHUB_TOKEN }}
- issue-number: ${{ github.event.issue.number }}
- labels: 'pending triage'