Skip to content

testing pr labels

testing pr labels #635

Workflow file for this run

name: CI / Test Action
on:
issues:
types: [opened, edited]
pull_request_target:
types: [opened, synchronize]
workflow_dispatch:
inputs:
number:
required: true
type: string
default: "10"
description: "PR/Issue Number to Run / Test Workflow on."
permissions:
pull-requests: write
issues: write
jobs:
label:
name: Label Issues and Pull Requests
runs-on: ubuntu-latest
permissions:
contents: read
issues: write
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Validate Config Files
run: |
if [[ ! -f .github/issues.yml || ! -f .github/pr.yml ]]; then
echo "Required config files not found! Please ensure .github/issues.yml and .github/pr.yml exist."
exit 1
fi
- name: Label Issues
if: github.event_name == 'issues'
uses: ./
with:
debug: true
create-labels: true
auth-token: ${{ github.token }}
issue-config: '.github/issues.yml'
- name: Label Pull Requests
if: github.event_name == 'pull_request_target'
uses: ./
with:
debug: true
create-labels: true
auth-token: ${{ github.token }}
pr-config: '.github/pr.yml'
- name: Manual Dispatch
if: github.event_name == 'workflow_dispatch'
uses: ./
with:
debug: true
create-labels: true
github-token: ${{ secrets.MY_PAT || github.token }}
pr-config: '.github/pr.yml'
issue-config: '.github/issues.yml'
number: ${{ github.event.inputs.number }}
- name: Debug Event Context
run: echo "${{ toJSON(github.event) }}"