Skip to content

Commit

Permalink
Merge pull request #136 from fisuda/add/github_actions
Browse files Browse the repository at this point in the history
ADD GitHub action to close inactive issues
  • Loading branch information
fisuda committed May 19, 2023
2 parents 5f5aab0 + 5afe9e6 commit 10c83e1
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 1 deletion.
20 changes: 20 additions & 0 deletions .github/workflows/stale-issues.yml
@@ -0,0 +1,20 @@
name: Close inactive issues
on:
schedule:
- cron: "18 18 * * *"

jobs:
close-issues:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v8
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: "This issue is stale because it has been open for 14 days with no activity."
close-issue-message: "This issue was closed because it has been inactive for 7 days since being marked as stale."
stale-issue-label: "stale"
exempt-issue-labels: 'bug,enhancement'
days-before-issue-stale: 14
days-before-issue-close: 7
days-before-pr-stale: -1
days-before-pr-close: -1
3 changes: 2 additions & 1 deletion CHANGELOG.md
@@ -1,6 +1,7 @@
## node-red-contrib-letsfiware-NGSI v0.14.0-next

- Add feature for encoding and decoding forbidden chars (#135)
- ADD GitHub action to close inactive issues (#136)
- ADD feature for encoding and decoding forbidden chars (#135)
- ADD encode / decode node (#133)

## node-red-contrib-letsfiware-NGSI v0.14.0 - 02 May, 2023
Expand Down

0 comments on commit 10c83e1

Please sign in to comment.