Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updates #77

Merged
merged 4 commits into from
Nov 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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