Skip to content

Commit

Permalink
Fix dtinth#57
Browse files Browse the repository at this point in the history
  • Loading branch information
wvffle committed Sep 8, 2020
1 parent a466c8c commit 9f522a6
Show file tree
Hide file tree
Showing 38 changed files with 89,824 additions and 4,646 deletions.
21 changes: 0 additions & 21 deletions Dockerfile

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import { runMain } from './TodoActionsMain'
import { resetMockWorld } from './__mocks__/World'
import { runMain } from '../src/TodoActionsMain'
import { resetMockWorld } from '../src/__mocks__/World'
import sortBy from 'lodash.sortby'

jest.mock('./DataStore')
jest.mock('./CodeRepository')
jest.mock('./TaskManagementSystem')
jest.mock('../src/DataStore')
jest.mock('../src/CodeRepository')
jest.mock('../src/TaskManagementSystem')

const MARKER = 'TODO'

Expand Down
29 changes: 29 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: 'Todo Actions'
description: 'Convert TODO comments into issues'

inputs:
collect_commit_msg:
description: 'Commit message of collecting issues'
default: 'Collect TODO comments'
collect_commit_body:
description: 'Commit body of collecting issues'
default: ''

reference_commit_msg:
description: 'Commit message of referencing issues'
default: 'Update TODO references: %s'
reference_commit_body:
description: 'Commit body of referencing issues'
default: ''

token:
description: 'Used to commit changes and open issues'
default: ${{ github.token }}

branch:
description: 'Working branch'
default: 'master'

runs:
using: 'node12'
main: 'dist/CLIEntrypoint.js'
Binary file added dist/code-points.mem
Binary file not shown.
Loading

0 comments on commit 9f522a6

Please sign in to comment.