Fixes error message that appears when deleting open PDS #998
  
    
      This file contains hidden or 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
    
  
  
    
  | name: Report VSIX Artifact in PR | |
| on: | |
| pull_request: | |
| paths: | |
| - packages/zowe-explorer/** | |
| - packages/zowe-explorer-api/** | |
| - .github/workflows/report-artifact-pr.yml | |
| - .github/resources/artifact-template.hbs | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| jobs: | |
| build-ze-artifact: | |
| runs-on: ubuntu-22.04 | |
| timeout-minutes: 60 | |
| if: (!contains(github.event.head_commit.message, '[ci skip]')) | |
| steps: | |
| - name: Check out code | |
| uses: actions/checkout@v4 | |
| - name: Use Node.js 20.x | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20.x | |
| - run: npm install -g pnpm | |
| - run: pnpm config set network-timeout 60000 && pnpm install | |
| - run: pnpm build | |
| id: build | |
| - name: Package VSIX | |
| run: pnpm package | |
| working-directory: packages/zowe-explorer | |
| - name: Archive VSIX artifact | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: zowe-explorer-vsix | |
| path: dist/*.vsix | |
| - name: Report VSIX artifact | |
| uses: bitonality/[email protected] | |
| continue-on-error: true | |
| with: | |
| comment-mode: 'CreateOrUpdate' | |
| handlebars-template: '.github/resources/artifact-template.hbs' |