fix error in run rsfc analysis action with internal PR #6
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Run RSFC analysis | ||
| on: | ||
| workflow_dispatch: | ||
| pull_request: | ||
| types: [opened, synchronize, reopened] | ||
| jobs: | ||
| run-rsfc-checks: | ||
| uses: oeg-upm/rsfc/.github/workflows/run-rsfc.yml@main | ||
| with: | ||
| repo_url: https://github.com/${{ github.repository }} | ||
| is_fork: ${{ github.event.pull_request.head.repo.full_name != github.repository }} | ||
| pr_sha: ${{ github.event.pull_request.head.sha }} | ||
| secrets: | ||
| RSFC_TOKEN: ${{ secrets.RSFC_TOKEN }} | ||