File tree Expand file tree Collapse file tree 3 files changed +32
-2
lines changed
Expand file tree Collapse file tree 3 files changed +32
-2
lines changed Original file line number Diff line number Diff line change 1+ name : Build with bal test native
2+
3+ on :
4+ workflow_dispatch :
5+ inputs :
6+ lang_tag :
7+ description : Branch/Release Tag of the Ballerina Lang
8+ required : true
9+ default : master
10+ lang_version :
11+ description : Ballerina Lang Version (If given ballerina lang buid will be skipped)
12+ required : false
13+ default : ' '
14+ native_image_options :
15+ description : Default native-image options
16+ required : false
17+ default : ' '
18+ schedule :
19+ - cron : ' 30 18 * * *'
20+
21+ jobs :
22+ call_stdlib_workflow :
23+ name : Run StdLib Workflow
24+ if : ${{ github.event_name != 'schedule' || (github.event_name == 'schedule' && github.repository_owner == 'ballerina-platform') }}
25+ uses : ballerina-platform/ballerina-standard-library/.github/workflows/build-with-bal-test-native-template.yml@main
26+ with :
27+ lang_tag : ${{ inputs.lang_tag }}
28+ lang_version : ${{ inputs.lang_version }}
29+ native_image_options : ${{ inputs.native_image_options }}
Original file line number Diff line number Diff line change @@ -2,10 +2,11 @@ Ballerina Regex Library
22==============================
33
44 [ ![ Build] ( https://github.com/ballerina-platform/module-ballerina-regex/actions/workflows/build-timestamped-master.yml/badge.svg )] ( https://github.com/ballerina-platform/module-ballerina-regex/actions/workflows/build-timestamped-master.yml )
5+ [ ![ codecov] ( https://codecov.io/gh/ballerina-platform/module-ballerina-regex/branch/main/graph/badge.svg )] ( https://codecov.io/gh/ballerina-platform/module-ballerina-regex )
56 [ ![ Trivy] ( https://github.com/ballerina-platform/module-ballerina-regex/actions/workflows/trivy-scan.yml/badge.svg )] ( https://github.com/ballerina-platform/module-ballerina-regex/actions/workflows/trivy-scan.yml )
7+ [ ![ GraalVM Check] ( https://img.shields.io/github/workflow/status/ballerina-platform/module-ballerina-regex/Build%20with%20bal%20test%20native?label=GraalVM%20Check )] ( https://github.com/ballerina-platform/module-ballerina-regex/actions/workflows/build-with-bal-test-native.yml )
68 [ ![ GitHub Last Commit] ( https://img.shields.io/github/last-commit/ballerina-platform/module-ballerina-regex.svg )] ( https://github.com/ballerina-platform/module-ballerina-regex/commits/main )
79 [ ![ Github issues] ( https://img.shields.io/github/issues/ballerina-platform/ballerina-standard-library/module/regex.svg?label=Open%20Issues )] ( https://github.com/ballerina-platform/ballerina-standard-library/labels/module%2Fregex )
8- [ ![ codecov] ( https://codecov.io/gh/ballerina-platform/module-ballerina-regex/branch/main/graph/badge.svg )] ( https://codecov.io/gh/ballerina-platform/module-ballerina-regex )
910
1011This module provides APIs for searching, splitting, and replacing the set of characters of a string. These APIs are using a
1112regular expression as a ` String ` to perform these operations by finding the string matches.
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ version=1.3.1-SNAPSHOT
44
55ballerinaLangVersion =2201.0.4
66
7- ballerinaGradlePluginVersion =0.14.1
7+ ballerinaGradlePluginVersion =1.0.0
88testngVersion =6.14.3
99slf4jVersion =1.7.30
1010githubSpotbugsVersion =4.0.5
You can’t perform that action at this time.
0 commit comments