Skip to content

Update action.yml

Update action.yml #10

Workflow file for this run

name: 'Test Action'
on:
push:
branches:
- 'main'
workflow_dispatch:
permissions:
contents: read
checks: write
jobs:
test-action:
name: 'Test Action'
runs-on: ubuntu-latest
steps:
- name: 'Setup Repository (${{github.event.repository.name}})'
uses: actions/checkout@v4
- name: 'Test Action input'
id: test
uses: './'
with:
token: '${{ secrets.GITHUB_TOKEN }}'
organization-name: '${{ github.event.organization.login }}'
categories: 'categories.json'
- name: 'Test Action output'
run: |
echo "Output: ${{ steps.test.outputs.custom-text-output }}"