-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #21 from TinkurLab/tinkurlab-transfer
Tinkurlab transfer
- Loading branch information
Showing
8 changed files
with
6,471 additions
and
4,671 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: Validate | ||
on: [pull_request] | ||
|
||
jobs: | ||
validate-code: | ||
name: Test GH action with unit testing | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout Code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Setup NodeJS | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: 14 | ||
check-latest: true | ||
|
||
- name: Install dependencies | ||
run: npm ci | ||
|
||
- name: Run Unit tests | ||
run: npm test -- --ci |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
FROM node:8-slim | ||
FROM node:14 | ||
|
||
LABEL "com.github.actions.name"="Issue Bulk Labeler" | ||
LABEL "com.github.actions.description"="Bulk add labels when creating an issue" | ||
LABEL "com.github.actions.icon"="tag" | ||
LABEL "com.github.actions.color"="green" | ||
|
||
LABEL "repository"="http://github.com/adamzolyak/issue-labeler-action" | ||
LABEL "repository"="http://github.com/tinkurlab/issue-labeler-action" | ||
LABEL "homepage"="http://www.tinkurlab.com" | ||
LABEL "maintainer"="Adam Zolyak <[email protected]>" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,7 +33,7 @@ jobs: | |
name: Bulk Issue Labeler | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: adamzolyak/issue-labeler-action@master | ||
- uses: tinkurlab/issue-labeler-action@master | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
``` | ||
|
@@ -46,4 +46,4 @@ If you have suggestions for how this GitHub Action could be improved, or want to | |
## License | ||
[ISC](LICENSE) © 2019 Adam Zolyak <[email protected]> (www.tinkurlab.com) | ||
[ISC](LICENSE) © 2021 Adam Zolyak <[email protected]> (www.tinkurlab.com) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
|
||
export GITHUB_TOKEN="12345" | ||
export GITHUB_REPOSITORY="adamzolyak/actions-playground" | ||
export GITHUB_REPOSITORY="tinkurlab/actions-playground" | ||
export GITHUB_EVENT_PATH="/issue-labeler-action/tests/fixtures/actionTrigger.json" | ||
|
||
node app.js |
Oops, something went wrong.