Skip to content

Commit

Permalink
Moved from apify-core
Browse files Browse the repository at this point in the history
  • Loading branch information
drobnikj committed Mar 29, 2021
1 parent 778fa94 commit eae3a7e
Show file tree
Hide file tree
Showing 11 changed files with 16,297 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
dist/
lib/
node_modules/
jest.config.js
6 changes: 6 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"extends": "@apify/eslint-config-ts",
"rules": {
"import/extensions": ["off", "never"]
}
}
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Dependency directory
node_modules

# Ignore built ts files
lib/**/*
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Apify PR toolkit

This action makes Apify PR better.

## Development

1. Update code in `./src`
2. Run `npm i`
3. Run `npm run all`
4. Commit all changes including `./disc` folder with built code.
5. Publish with new tag
10 changes: 10 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
name: 'Apify PR toolkit'
description: 'This action helps to Apify PR be better.'
author: 'Apify'
inputs:
repo-token:
required: true
description: 'Repository Github token'
runs:
using: 'node12'
main: 'dist/index.js'
Loading

0 comments on commit eae3a7e

Please sign in to comment.