You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+16-32Lines changed: 16 additions & 32 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,15 +5,25 @@ GitHub Action that automatically creates an issue with an overview of the commit
5
5
## Permissions
6
6
7
7
This action requires the following permissions:
8
-
9
-
```
10
-
permissions:
11
-
issues: write
12
-
contents: read
13
-
```
8
+
-`issues: write`
9
+
-`contents: read`
14
10
15
11
💡 `contents:read` is required because the action is using a `actions/checkout@v3` action to download the repository content.
16
12
13
+
## Usage
14
+
15
+
Configure this action in your workflows providing the inputs described below in order to get notified in `x` time after the repo has been updated but no release has happened.
16
+
17
+
It is possible to snooze the notification issue for `x` time by closing it as **not planned**. Once the time has passed a new issue will be created.
|`github-token`| no |`${{ github.token }}`| A github token. |
24
+
|`notify-after`| no || The time after which unreleased commits should be considered stale and should notify for a release.<br />This option accepts various time formats as described by the time conversion library [ms](https://github.com/vercel/ms). |
25
+
|`stale-days`| no |`7`| ⚠️ **Deprecated** ⚠️ Number of days of inactivity before a release becomes stale. The value can be a number or a string. |
26
+
|`commit-messages-lines`| no |`1`| Limit the number of first `x` lines from commit messages that will be added in the issue description. No truncation when set to `0`. |
Configure this action in your workflows providing the inputs described below in order to get notified in `x` time after the repo has been updated but no release has happened.
44
-
It is possible to snooze the notification issue for `x` time by closing it as **not planned**. Once the time has passed a new issue will be created.
45
-
46
-
### `github-token`
47
-
48
-
**Optional** A GitHub token.
49
-
50
-
### `notify-after: '7 days'`
51
-
52
-
**Optional** The time after which unreleased commits should be considered stale and should notify for a release.
53
-
This option accepts various time formats as described by the time conversion library [ms](https://github.com/vercel/ms).
54
-
Example: `1 minute`.
55
-
Default is `7 days`.
56
-
57
-
### **Deprecated** `stale-days: 7`
58
-
59
-
**Optional** The time after which unreleased commits should be considered stale and should notify for a release. The value can be a number or a string.
60
-
Example: `1 minute`.
61
-
Default is `7` days.
62
-
63
-
### `commit-messages-lines: 1`
64
-
65
-
**Optional** Limit the number of first `x` lines from commit messages that will be added in the issue description. No truncation when set to `0`. Default is `1`.
0 commit comments