MicroFocus / alm-octane-github-actions-integration

Custom GitHub action which facilitates communication between GitHub and ALM Octane regarding CI/CD.
Other
1 stars 1 forks source link

GitHub Action doesn't provide any logs #3

Open Paul-Dumrauf opened 2 weeks ago

Paul-Dumrauf commented 2 weeks ago

Description: Using this GitHub Action has not been running as expected. The Action seems to run successfully, but there is no activity visible in ALM Octane. There are no outputs or logs available to review and diagnose the issue.

Expected behavior: The GitHub Action should execute successfully. Logs should be generated to track progress and report any errors encountered during the Action's execution.

Actual behavior: The Action is triggered and appears to be successfully, but no log output appears in the Actions tab. It’s unclear whether the Action is starting at all or hanging at some point. The actions runs through regardless of the connection data being correct or not.

We need assistance to correctly generate the log output so we can trace the issue.

Our workflow YAML:

name: OctaneIntegration
run-name: ${{ github.actor }} connects to ALM Octane
on: [push]
env: 
    NODE_TLS_REJECT_UNAUTHORIZED: 0
    ACTIONS_STEP_DEBUG: true
    ACTIONS_RUNNER_DEBUG: true
jobs:
  octane_integration_job:
    runs-on: ubuntu-latest
    name: OctaneIntegration#${{github.event.action}}#${{github.event.workflow_run.id}}
    steps:
      - name: GitHub Actions ALM Octane Integration
        uses: MicroFocus/alm-octane-github-actions-integration@v1.0
        id: gitHubActionsIntegration
        with:
          octaneUrl: 'octaneUrl'
          octaneSharedSpace: 'octaneSharedSpace'
          octaneWorkspace: 'octaneWorkspace'
          octaneClientId: ${{secrets.ALM_OCTANE_CLIENT_ID}}
          octaneClientSecret: ${{secrets.ALM_OCTANE_CLIENT_SECRET}}
          githubToken: ${{secrets.GITHUB_TOKEN}}
          serverBaseUrl: 'ourRepo'
          unitTestResultsGlobPattern: "**/*.xml"

Thank you in advance for your support!

Stefan923 commented 2 weeks ago

Hi Paul,

We will make a release soon and a new parameter will be available to use. It will let you set the debug level. I'll get back with an update to this issue when we complete the release.

Paul-Dumrauf commented 1 week ago

Hello, Could you please provide an update on how long we might need to wait for its availability? Any information on the release schedule would be greatly appreciated, as it will help us plan accordingly.

Thank you in advance for your time and assistance.