Skip to content

Commit

Permalink
Merge pull request #21 from 0x4007/fix/rate-limits
Browse files Browse the repository at this point in the history
fix/rate limits
  • Loading branch information
0x4007 authored Sep 30, 2024
2 parents cf64266 + 7913bbb commit 7b6c882
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,22 +32,29 @@ inputs:
statics_directory:
description: "Directory that contains static files"
required: false
app_id:
description: "GitHub App ID"
required: false
private_key:
description: "GitHub App Private Key"
required: false

runs:
using: "composite"
steps:
- name: Get GitHub App token
if: inputs.app_id != '' && inputs.private_key != '' # Only attempt to authenticate if `app_id` and `private_key` are provided
uses: tibdex/[email protected]
id: get_installation_token
with:
app_id: ${{ secrets.APP_ID }}
private_key: ${{ secrets.APP_PRIVATE_KEY }}
app_id: ${{ inputs.app_id }}
private_key: ${{ inputs.private_key }}

- name: Find associated pull request
id: pr
uses: actions/github-script@v7
with:
github-token: ${{ steps.get_installation_token.outputs.token }}
github-token: ${{ steps.get_installation_token.outputs.token || github.token }}
script: |
const response = await github.rest.search.issuesAndPullRequests({
q: 'repo:${{ inputs.repository }} is:pr sha:${{ inputs.commit_sha }}',
Expand Down Expand Up @@ -92,4 +99,4 @@ runs:
--deployment_output "${{ env.DEPLOYMENT_OUTPUT }}" \
--repository "${{ inputs.repository }}" \
--pull_request_number "${{ fromJSON(steps.pr.outputs.result).pullRequestNumber }}" \
--commit_sha "${{ inputs.commit_sha }}"
--commit_sha "${{ inputs.commit_sha }}"

0 comments on commit 7b6c882

Please sign in to comment.