Skip to content

add github-script

add github-script #2

Workflow file for this run

on:
push:
jobs:
trigger-pr-update:
runs-on: ubuntu-latest
steps:
- uses: actions/github-script@v7
with:
script: |
// Get a list of all issues created by the PR opener
// See: https://octokit.github.io/rest.js/#pagination
const creator = context.payload.sender.login
const prs = github.rest.pulls.get({
owner: context.repo.owner,
repo: context.repo.repo
});
console.log(prs)