Skip to content

Commit be9d8ea

Browse files
authored
actions: debug pull_request_target (#526)
1 parent 6b6c478 commit be9d8ea

5 files changed

Lines changed: 16 additions & 10 deletions

File tree

.github/workflows/main.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
name: CI Workflow
22

33
on:
4-
# pull_request_target:
5-
# branches:
6-
# - main
4+
pull_request_target:
5+
branches:
6+
- main
77
pull_request:
88
branches:
99
- main
@@ -40,7 +40,8 @@ jobs:
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 }}

CHANGELOG.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
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)
@@ -33,7 +36,7 @@
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

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
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",

scripts/bump_version.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)