⬆️ Update 👷 GitHub Action actions/checkout to f43a0e5 #113
Workflow file for this run
This file contains 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: Pull Request | |
on: | |
pull_request: | |
types: [synchronize, opened, edited] | |
jobs: | |
skip: | |
name: Check Duplicate Actions | |
runs-on: ubuntu-latest | |
outputs: | |
should-skip: ${{steps.skip-checkout.outputs.should_skip}} | |
steps: | |
- name: Skip Duplicate Actions (Pull Request) | |
uses: fkirc/skip-duplicate-actions@12aca0a884f6137d619d6a8a09fcc3406ced5281 # v5 | |
id: skip-check | |
test: | |
name: Test | |
uses: ./.github/workflows/test.yml | |
needs: skip | |
if: needs.skip.outputs.should-skip != 'true' | |