Skip to content

Commit 10af3c1

Browse files
Merge with master
2 parents 441ebcc + 4412fe0 commit 10af3c1

File tree

3 files changed

+27
-1
lines changed

3 files changed

+27
-1
lines changed

.github/CODEOWNERS

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Lines starting with '#' are comments.
2+
# Each line is a file pattern followed by one or more owners.
3+
4+
# See: https://help.github.com/articles/about-codeowners/
5+
6+
# These owners will be the default owners for everything in the repo.
7+
* @daneshk @kalaiyarasiganeshalingam

.github/workflows/stale_check.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: 'Close stale pull requests'
2+
3+
on:
4+
schedule:
5+
- cron: '30 19 * * *'
6+
workflow_dispatch:
7+
8+
jobs:
9+
stale:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/stale@v3
13+
with:
14+
stale-pr-message: 'This PR has been open for more than 15 days with no activity. This will be closed in 3 days unless the `stale` label is removed or commented.'
15+
close-pr-message: 'Closed PR due to inactivity for more than 18 days.'
16+
days-before-pr-stale: 15
17+
days-before-pr-close: 3
18+
days-before-issue-stale: -1
19+
days-before-issue-close: -1

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ org.gradle.caching=true
22
group=io.ballerina.stdlib
33
version=1.0.0-SNAPSHOT
44

5-
ballerinaLangVersion=2.0.0-beta.3-20210819-105900-12ae88f7
5+
ballerinaLangVersion=2.0.0-beta.3-20210902-205000-02e8474f
66

77
ballerinaGradlePluginVersion=0.11.0
88
testngVersion=6.14.3

0 commit comments

Comments
 (0)