Skip to content

build: use Node.js built-in TypeScript support for dev-infra scripts #2

build: use Node.js built-in TypeScript support for dev-infra scripts

build: use Node.js built-in TypeScript support for dev-infra scripts #2

name: Worklow Testing
on:
pull_request_target:
types: [opened, synchronize, reopened]
# Declare default permissions as read only.
permissions:
contents: read
jobs:
commit_message_based_labels:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- name: Log repository details
run: |
echo "Repository Owner: ${{ github.repository_owner }}"
echo "Repository Name: ${{ github.repository }}"
echo "Commit SHA: ${{ github.sha }}"
echo "Ref: ${{ github.ref }}"
echo "Head Ref: ${{ github.head_ref }}"
echo "Base Ref: ${{ github.base_ref }}" # For pull requests
echo "Workflow: ${{ github.workflow }}"
echo "Run ID: ${{ github.run_id }}"
echo "Run Number: ${{ github.run_number }}"
echo "Event Name: ${{ github.event_name }}"
- name: List the files
run: ls -al