Skip to content

Commit

Permalink
Merge branch 'houdiniproject:main' into (#1547)/add_pull_request_temp…
Browse files Browse the repository at this point in the history
…late
  • Loading branch information
Abraao1231 committed Jun 15, 2023
2 parents 53effd1 + 5593fa8 commit 278ae5d
Show file tree
Hide file tree
Showing 2 changed files with 54 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
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/*'
18 changes: 18 additions & 0 deletions .github/workflows/labeler.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# 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:
permissions: write-all
runs-on: ubuntu-latest
steps:
- uses: actions/labeler@v2
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"

0 comments on commit 278ae5d

Please sign in to comment.