-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feat/393 post comment when issue is closed as not planned (#408)
- Loading branch information
1 parent
277ec22
commit 158f9ae
Showing
9 changed files
with
424 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,8 @@ on: | |
- main | ||
release: | ||
types: [published] | ||
issues: | ||
types: [closed] | ||
schedule: | ||
- cron: '30 8 * * *' | ||
jobs: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
'use strict' | ||
|
||
const ISSUE_LABEL = 'notify-release' | ||
const ISSUE_TITLE = 'Release pending!' | ||
const STATE_OPEN = 'open' | ||
const STATE_CLOSED = 'closed' | ||
const STATE_CLOSED_NOT_PLANNED = 'not_planned' | ||
const ISSUES_EVENT_NAME = 'issues' | ||
|
||
module.exports = { | ||
ISSUE_LABEL, | ||
ISSUE_TITLE, | ||
STATE_OPEN, | ||
STATE_CLOSED, | ||
STATE_CLOSED_NOT_PLANNED, | ||
ISSUES_EVENT_NAME, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.