Skip to content

Test Issue with scripting injection #12

Test Issue with scripting injection

Test Issue with scripting injection #12

Workflow file for this run

name: Test Action
on:
issues:
types: [opened, reopened]
jobs:
test:
name: Test Action
if: contains(github.event.issue.labels.*.name, 'test-action')
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Run Action
id: parse
uses: ./
with:
issue_id: ${{ github.event.issue.number }}
separator: '###'
label_marker_start: '>>'
label_marker_end: '>>'
- name: Show parsed data
env:
parsed_data: ${{ steps.parse.outputs.payload }}
run: |
echo '${{ env.parsed_data }}'