Skip to content

Commit

Permalink
Merge pull request #77 from probot/updates
Browse files Browse the repository at this point in the history
Updates
  • Loading branch information
GrantBirki authored Nov 14, 2023
2 parents 941ccd9 + 1483da8 commit 04b7146
Show file tree
Hide file tree
Showing 5 changed files with 10,370 additions and 7 deletions.
16 changes: 12 additions & 4 deletions .github/workflows/npm-test.js.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,23 @@
name: Node.js CI
"on":
on:
- push
- pull_request

permissions:
contents: read

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}

- name: setup node
uses: actions/setup-node@v4
with:
node-version: 16
- run: npm install
node-version-file: .node-version
cache: npm

- run: npm ci

- run: npm test
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
node_modules/
.env
private-key.pem
package-lock.json
1 change: 1 addition & 0 deletions .node-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
20.6.0
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Probot: Reminders

[![Node.js CI](https://github.com/probot/reminders/actions/workflows/npm-test.js.yml/badge.svg)](https://github.com/probot/reminders/actions/workflows/npm-test.js.yml)

> a GitHub App built with [Probot](https://github.com/probot/probot) that adds reminders to Issues and Pull Requests.
Use the `/remind` slash command to set a reminder on any comment box on GitHub and you'll get a ping about it again when the reminder is due.
Expand All @@ -13,12 +15,12 @@ Use the `/remind` slash command to set a reminder on any comment box on GitHub a

## Setup

```
```bash
# Install dependencies
npm install

# Run the bot
npm start
```

For more information, see the [documentation for probot](https://github.com/probot/probot).
For more information, see the [documentation for probot](https://github.com/probot/probot).
Loading

0 comments on commit 04b7146

Please sign in to comment.