The labeler is broken so we'll remove it temporarily

This commit is contained in:
Eric 2020-06-11 11:45:39 -05:00 committed by Eric Schultz
parent 9500c47ab6
commit 05a8c98645
2 changed files with 0 additions and 39 deletions

22
.github/labeler.yml vendored
View file

@ -1,22 +0,0 @@
ruby: './**/*.rb '
javascript:
- './**/*.js'
- './**/*.ts*'
spec:
- 'spec/**'
- './**/*.spec.js'
- './**/*.spec.ts*'
model: 'app/models/**'
controller: 'app/controllers/**'
mailer: 'app/mailers/**'
view: 'app/views/**'
job: 'app/jobs/**'
dependencies:
- 'Gemfile.lock'
- 'yarn.lock'
- 'gems/**'
config:
- "./config/**"
widget:
- "app/javascript/donate-button/*"
- "app/assets/stylesheets/donate-button/*"

View file

@ -1,17 +0,0 @@
# This workflow will triage pull requests and apply a label based on the
# paths that are modified in the pull request.
#
# To use this workflow, you will need to set up a .github/labeler.yml
# file with configuration. For more information, see:
# https://github.com/actions/labeler/blob/master/README.md
name: Labeler
on: [pull_request]
jobs:
label:
runs-on: ubuntu-latest
steps:
- uses: actions/labeler@v2
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"