File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11name : CI Workflow
22
33on :
4- # pull_request_target:
5- # branches:
6- # - main
4+ pull_request_target :
5+ branches :
6+ - main
77 pull_request :
88 branches :
99 - main
4040 node-version-file : .nvmrc
4141 - run : ./scripts/package.sh
4242 - run : ./scripts/bump_version.sh
43- if : ${{ github.event_name != 'pull_request_target' }}
43+ continue-on-error : true
44+ # if: ${{ github.event_name != 'pull_request_target' }}
4445 env :
4546 GH_TOKEN : ${{ github.token }}
4647 GITHUB_EVENT_NAME : ${{ github.event_name }}
Original file line number Diff line number Diff line change 1- # [ 1.4.19 ] ( https://github.com/kenherring/ablunit-test-runner/releases/tag/1.4.19 ) - 2026-03-25 (pre-release)
1+ # [ 1.4.21 ] ( https://github.com/kenherring/ablunit-test-runner/releases/tag/1.4.21 ) - 2026-03-25 (pre-release)
22
3+ * actions: debug pull_request_target (#526 )
4+ * Bump picomatch from 2.3.1 to 2.3.2 in /dummy-ext in the npm_and_yarn group across 1 directory (#525 )
5+ * Bump the npm_and_yarn group across 1 directory with 1 update (#524 )
36* actions: debug messages for bump_version.sh (#520 )
47* actions: use ` pull_request_target ` instead of ` pull_request ` (#519 )
58* Bump github/codeql-action from 3 to 4 (#518 )
3336* Bump esbuild from 0.27.0 to 0.27.1 (#457 )
3437* Bump jws from 3.2.2 to 3.2.3 in the npm_and_yarn group across 1 directory (#455 )
3538
36- ** Full Changelog** : [ 1.4.4...1.4.19 ] ( https://github.com/kenherring/ablunit-test-runner/compare/1.4.17 ...1.4.19 )
39+ ** Full Changelog** : [ 1.4.4...1.4.21 ] ( https://github.com/kenherring/ablunit-test-runner/compare/1.4.19 ...1.4.21 )
3740
3841# [ 1.4.4] ( https://github.com/kenherring/ablunit-test-runner/releases/tag/1.4.4 ) - 2025-11-26 (pre-release)
3942
Original file line number Diff line number Diff line change 22 "name" : " ablunit-test-runner" ,
33 "displayName" : " ABLUnit Test Runner" ,
44 "description" : " OpenEdge ABLUnit test runner for VSCode" ,
5- "version" : " 1.4.19 " ,
5+ "version" : " 1.4.21 " ,
66 "engineStrict" : true ,
77 "galleryBanner" : {
88 "color" : " #007ACC" ,
Original file line number Diff line number Diff line change @@ -52,7 +52,9 @@ bump_prerelease_version () {
5252 done
5353 log_it " bumping version to $BUMP_TO_VERSION "
5454
55- if ! npm version " $BUMP_TO_VERSION " --no-tag-git-version -m " Bump version to prerelease %s" ; then
55+ if npm version " $BUMP_TO_VERSION " --no-tag-git-version -m " Bump version to prerelease %s" ; then
56+ log_it " npm version executed successfully"
57+ else
5658 EXIT_CODE=$?
5759 log_error " npm version failed, exit_code=$EXIT_CODE "
5860 # exit $EXIT_CODE
You can’t perform that action at this time.
0 commit comments