diff --git a/CHANGELOG.md b/CHANGELOG.md index 35aad88..e71384f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [1.0.14](https://github.com/agrc/reminder-action/compare/v1.0.13...v1.0.14) (2024-07-10) + + +### Documentation + +* document pull request permissions ([5e7df86](https://github.com/agrc/reminder-action/commit/5e7df86a399f6236ef9432c36f8b28dc98ed433b)) + ## [1.0.13](https://github.com/agrc/reminder-action/compare/v1.0.12...v1.0.13) (2024-07-06) diff --git a/README.md b/README.md index f249bc8..329c972 100644 --- a/README.md +++ b/README.md @@ -18,6 +18,9 @@ Use any form of `/remind me [what] [when]`, such as: ## Sample Usage +>[!TIP] +> Add `issues: write` and `pull-requests: write` if you intend to use reminders in pull requests and issues. + ```yml name: 'check reminders' @@ -27,6 +30,7 @@ on: permissions: issues: write + pull-requests: write jobs: reminder: diff --git a/package-lock.json b/package-lock.json index 6e2f871..d5237ba 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "reminder-action", - "version": "1.0.13", + "version": "1.0.14", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "reminder-action", - "version": "1.0.13", + "version": "1.0.14", "license": "MIT", "dependencies": { "@actions/core": "^1.10.1", diff --git a/package.json b/package.json index 94cc685..03f99df 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "reminder-action", - "version": "1.0.13", + "version": "1.0.14", "description": "Post issue comments when reminders are due", "main": "index.js", "scripts": {