Skip to content
This repository has been archived by the owner on May 31, 2021. It is now read-only.

Commit

Permalink
Add labeler config
Browse files Browse the repository at this point in the history
  • Loading branch information
thislooksfun committed Nov 13, 2019
1 parent 6d423b3 commit 4ec464d
Showing 1 changed file with 55 additions and 0 deletions.
55 changes: 55 additions & 0 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
################
# CI / Testing #
################

# CI
ci: .github/**/*

# Tests
tests:
- tests/**/*
- jest.config.js
tests/e2e: tests/e2e/**/*
tests/unit: tests/unit/**/*

########
# Code #
########

# Any code
src: src/**/*
# Assets
assets: src/assets/**/*
# Decorators
decorators: src/assets/**/*
# Any component(s)
components: src/components/**/*
# Play mode
components/sheet: src/components/characterSheet/**/*
# Character creation
components/wizard: src/components/newCharacterWizard/**/*
# Helpers
helpers: src/helper/**/*
# Vuex
vuex: src/store/**/*
# Main views
views: src/views/**/*

########
# Misc #
########

# Any changes to Mergify config
mergify: .mergify.yml
# Any changes to styling
style:
- "**/.eslintrc.js"
- .prettierrc.yml
- .restyled.yaml
# Any changes to this config
labeler: .github/labeler.yml

# Any changes to Vue files / config
vue:
- vue.config.js
- "**/*.vue"

0 comments on commit 4ec464d

Please sign in to comment.