Merge branch 'master' into rails-v6

This commit is contained in:
Eric Schultz 2020-06-04 13:47:10 -05:00 committed by GitHub
commit eae87bd7a8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 27 additions and 0 deletions

17
.github/workflows/label.yml vendored Normal file
View file

@ -0,0 +1,17 @@
# 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 }}"

10
.github/workflows/labeler.yml vendored Normal file
View file

@ -0,0 +1,10 @@
ruby: **/*.rb
javascript:
- any: ['**/*.js', '**/*.ts','**/*.tsx']
test:
- any: ['spec/**', '**/*.spec.js', '**/*.spec.ts', '**/*.spec.tsx']
model: app/models/**
controller: app/controllers/**
mailer: app/mailers/**
view: app/views/**
jobs: app/jobs/**