Skip to content

Commit

Permalink
Merge pull request #9 from Doarakko/topic/update-node16
Browse files Browse the repository at this point in the history
Topic/update node16
  • Loading branch information
Doarakko authored Mar 3, 2023
2 parents 5100d5b + 9a77f44 commit 29e02c0
Show file tree
Hide file tree
Showing 10 changed files with 2,035 additions and 381 deletions.
11 changes: 11 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
version: 2
updates:
- package-ecosystem: github-actions
directory: /
schedule:
interval: weekly

- package-ecosystem: npm
directory: /
schedule:
interval: weekly
8 changes: 4 additions & 4 deletions .github/workflows/check-dist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Set Node.js 12.x
uses: actions/setup-node@v2.5.1
- name: Set Node.js 16.x
uses: actions/setup-node@v3
with:
node-version: 12.x
node-version: 16

- name: Install dependencies
run: npm ci
Expand Down
17 changes: 17 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: LGTM
on:
issue_comment:
types: [created]
pull_request_review:
types: [submitted]
pull_request_review_comment:
types: [created]

jobs:
lgtm:
runs-on: ubuntu-latest
steps:
- name: LGTM
uses: Doarakko/action-lgtmoon/@v1.4
with:
github-token: ${{secrets.GITHUB_TOKEN}}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: LGTM
uses: Doarakko/action-lgtmoon/@v1.3
uses: Doarakko/action-lgtmoon/@v1.4
with:
github-token: ${{secrets.GITHUB_TOKEN}}
```
Expand Down
8 changes: 4 additions & 4 deletions action.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: "LGTMoon on GitHub Issue and Pull request"
description: "Post LGTM image on GitHub Issue and Pull request using LGTMoon."
name: 'LGTMoon on GitHub Issue and Pull request'
description: 'Post LGTM image on GitHub Issue and Pull request using LGTMoon.'
branding:
icon: moon
color: gray-dark
Expand All @@ -9,5 +9,5 @@ inputs:
default: ${{ github.token }}
required: true
runs:
using: "node12"
main: "dist/index.js"
using: 'node16'
main: 'dist/index.js'
Loading

0 comments on commit 29e02c0

Please sign in to comment.