Skip to content

Unit Testing

Unit Testing #40

Workflow file for this run

name: Test custom action
on:
workflow_dispatch:
env:
GH_TOKEN: ${{ secrets.CI_TOKEN }}
jobs:
test-action:
runs-on: ubuntu-latest
steps:
- name: Run action
id: test-action
uses: ynput/github-data@unit-test
with:
repo: "ynput/ayon-addon-action-testing"
date: "2024-08-20T12:03:23Z"
query_parameters: "body,labels,title"
- name: Show results
run: |
echo "RAW-response: " && echo '${{ steps.test-action.outputs.raw-output }}'
echo "Labels: " && echo '${{ steps.test-action.outputs.label-list }}'
echo "Bump-increment: " && echo '${{ steps.test-action.outputs.label-list }}'
echo "Changelog: " && echo '${{ steps.test-action.outputs.changelog-markdown }}'