Skip to content

RF-31415 Add debug logging #32

RF-31415 Add debug logging

RF-31415 Add debug logging #32

Workflow file for this run

on:
workflow_dispatch:
push:
branches:
- master
- RF-31415/pp/fix-version-setting
jobs:
rainforest:
runs-on: ubuntu-latest
name: Run Rainforest
steps:
- uses: actions/checkout@v4
- name: Rainforest
uses: ./
with:
token: ${{ secrets.RF_MAIN_API_TOKEN }}
run_group_id: 9861
- name: Get run source
id: get_run_source
env:
token: ${{ secrets.RF_MAIN_API_TOKEN }}
run: |
run_json=$(curl -s -X GET -H "Client-Token: $token" "https://app.rainforestqa.com/api/1/runs/$(cat .rainforest_run_id)?slim=true")
echo "Run JSON:\n$run_json"
source=$(echo "$run_json" | jq -r ".source")
echo "Run Source:\t$source"
echo "source=$source" >> "$GITHUB_OUTPUT"
- name: Test run source
uses: ./.github/actions/test
with:
actual: ${{ steps.get_run_source.outputs.source }}
expected: rainforest-gh-action