Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/fix-license-job-for-pr-by-forked…
Browse files Browse the repository at this point in the history
…-repo' into check-license-finder-job
  • Loading branch information
masutaka committed Oct 29, 2024
2 parents df7de0f + 8951785 commit 7ca91ae
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/license.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,15 @@ jobs:
with:
app-id: ${{ vars.CI_TRIGGER_APP_ID }}
private-key: ${{ secrets.CI_TRIGGER_APP_PRIVATE_KEY }}
- uses: actions/checkout@v4
- name: Checkout code for non-fork PRs
if: steps.fork-check.outputs.is_fork != 'true'
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.ref }}
token: ${{ steps.app-token.outputs.token || secrets.GITHUB_TOKEN }}
token: ${{ steps.app-token.outputs.token }}
- name: Checkout code for forked PRs
if: steps.fork-check.outputs.is_fork == 'true'
uses: actions/checkout@v4
# To make the success of this job a prerequisite for merging into the main branch,
# set a filter here instead of on: to determine whether or not to proceed to the next step.
- name: Cache dependency files
Expand Down
2 changes: 1 addition & 1 deletion docs/packages-license.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# giselle

As of October 24, 2024 10:30am. 926 total
As of October 29, 2024 9:49am. 926 total

## Summary
* 667 MIT
Expand Down

0 comments on commit 7ca91ae

Please sign in to comment.