-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1025 from esm-tools/add-github-actions-stale
Create stale.yml
- Loading branch information
Showing
17 changed files
with
47 additions
and
16 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 |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# This workflow warns and then closes issues and PRs that have had no activity for a specified amount of time. | ||
# | ||
# You can adjust the behavior by modifying this file. | ||
# For more information, see: | ||
# https://github.com/actions/stale | ||
name: Mark stale issues and pull requests | ||
|
||
on: | ||
schedule: | ||
- cron: '00 14 * * *' | ||
|
||
jobs: | ||
stale: | ||
|
||
runs-on: ubuntu-latest | ||
permissions: | ||
issues: write | ||
pull-requests: write | ||
|
||
steps: | ||
- uses: actions/stale@v5 | ||
with: | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
days-before-stale: 365 | ||
stale-before-pr-stale: -1 | ||
days-before-close: 30 | ||
days-before-pr-close: -1 | ||
stale-issue-message: 'This issue has been inactive for the last 365 days. It will now be marked as stale and closed after 30 days of further inactivity. Please add a comment to reset this automatic closing of this issue or close it if solved.' | ||
stale-pr-message: 'This pull request has been incative for the last days.' | ||
stale-issue-label: 'Stale' | ||
stale-pr-label: 'no-pr-activity' |
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
[bumpversion] | ||
current_version = 6.23.5 | ||
current_version = 6.23.6 | ||
commit = True | ||
tag = True | ||
|
||
|
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
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 |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
|
||
__author__ = """Paul Gierz""" | ||
__email__ = "[email protected]" | ||
__version__ = "6.23.5" | ||
__version__ = "6.23.6" | ||
|
||
from .esm_archiving import (archive_mistral, check_tar_lists, | ||
delete_original_data, determine_datestamp_location, | ||
|
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 |
---|---|---|
|
@@ -2,6 +2,6 @@ | |
|
||
__author__ = """Dirk Barbi""" | ||
__email__ = "[email protected]" | ||
__version__ = "6.23.5" | ||
__version__ = "6.23.6" | ||
|
||
from .esm_calendar import * |
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 |
---|---|---|
|
@@ -2,4 +2,4 @@ | |
|
||
__author__ = """Dirk Barbi""" | ||
__email__ = "[email protected]" | ||
__version__ = "6.23.5" | ||
__version__ = "6.23.6" |
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 |
---|---|---|
|
@@ -2,4 +2,4 @@ | |
|
||
__author__ = """Dirk Barbi""" | ||
__email__ = "[email protected]" | ||
__version__ = "6.23.5" | ||
__version__ = "6.23.6" |
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 |
---|---|---|
|
@@ -2,6 +2,6 @@ | |
|
||
__author__ = """Dirk Barbi""" | ||
__email__ = "[email protected]" | ||
__version__ = "6.23.5" | ||
__version__ = "6.23.6" | ||
|
||
from .esm_environment import * |
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
__author__ = """Dirk Barbi""" | ||
__email__ = "[email protected]" | ||
__version__ = "6.23.5" | ||
__version__ = "6.23.6" | ||
|
||
|
||
from . import database |
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 |
---|---|---|
|
@@ -2,6 +2,6 @@ | |
|
||
__author__ = """Dirk Barbi""" | ||
__email__ = "[email protected]" | ||
__version__ = "6.23.5" | ||
__version__ = "6.23.6" | ||
|
||
from .esm_motd import * |
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
__author__ = """Dirk Barbi""" | ||
__email__ = "[email protected]" | ||
__version__ = "6.23.5" | ||
__version__ = "6.23.6" | ||
|
||
|
||
from .esm_parser import * | ||
|
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 |
---|---|---|
|
@@ -2,6 +2,6 @@ | |
|
||
__author__ = """Dirk Barbi, Paul Gierz, Sebastian Wahl""" | ||
__email__ = "[email protected]" | ||
__version__ = "6.23.5" | ||
__version__ = "6.23.6" | ||
|
||
from .esm_plugin_manager import * |
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 |
---|---|---|
|
@@ -2,6 +2,6 @@ | |
|
||
__author__ = """Dirk Barbi""" | ||
__email__ = "[email protected]" | ||
__version__ = "6.23.5" | ||
__version__ = "6.23.6" | ||
|
||
from .esm_profile import * |
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
__author__ = """Dirk Barbi""" | ||
__email__ = "[email protected]" | ||
__version__ = "6.23.5" | ||
__version__ = "6.23.6" | ||
|
||
from .batch_system import * | ||
from .chunky_parts import * | ||
|
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
__author__ = """Miguel Andres-Martinez""" | ||
__email__ = "[email protected]" | ||
__version__ = "6.23.5" | ||
__version__ = "6.23.6" | ||
|
||
from .initialization import * | ||
from .read_shipped_data import * | ||
|
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 |
---|---|---|
|
@@ -23,7 +23,7 @@ | |
|
||
__author__ = """Dirk Barbi, Paul Gierz""" | ||
__email__ = "[email protected]" | ||
__version__ = "6.23.5" | ||
__version__ = "6.23.6" | ||
|
||
import functools | ||
import inspect | ||
|
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 |
---|---|---|
|
@@ -2,6 +2,6 @@ | |
|
||
__author__ = """Paul Gierz""" | ||
__email__ = "[email protected]" | ||
__version__ = "6.23.5" | ||
__version__ = "6.23.6" | ||
|
||
from .utils import * |