Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
tac0turtle committed Sep 20, 2024
1 parent 1eba17c commit 5c7f841
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions .github/workflows/pr-reminder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,9 @@ jobs:
uses: actions/github-script@v5
id: pr-list
with:
script: |
const { data: pullRequests } = await github.pulls.list({
owner: context.repo.owner,
repo: context.repo.repo,
state: 'open'
});
return pullRequests.map(pr => pr.html_url).join('\n');
script:
|
console.log(github.pulls)

- name: Send Slack Reminder
if: steps.pr-list.outputs.result != ''
Expand Down

0 comments on commit 5c7f841

Please sign in to comment.