Skip to content

Bump eslint from 9.4.0 to 9.9.0 #28

Bump eslint from 9.4.0 to 9.9.0

Bump eslint from 9.4.0 to 9.9.0 #28

Workflow file for this run

name: PR Number
on:
issue_comment:
types: [created]
pull_request:
types: [closed]
jobs:
run:
runs-on: ubuntu-latest
steps:
- name: Pull Request Number
id: pr-number
uses: actions/github-script@v7
with:
script: |
return context.issue.number;
- run: |
echo "PR number: ${{ steps.pr-number.outputs.result }}"