Skip to content

Commit

Permalink
Temporary remove branch matcher for debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
fuxingloh committed Jan 14, 2021
1 parent dac3766 commit 7d305ff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 55 deletions.
50 changes: 1 addition & 49 deletions dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 1 addition & 6 deletions src/matcher/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,10 @@ import {Config} from '../config'

import title from './title'
import body from './body'
import branch from './branch'

export function getLabels(
client: InstanceType<typeof GitHub>,
config: Config
): string[] {
return uniq([
...title(client, config),
...body(client, config),
...branch(client, config)
])
return uniq([...title(client, config), ...body(client, config)])
}

0 comments on commit 7d305ff

Please sign in to comment.