We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 87829eb commit ae539a3Copy full SHA for ae539a3
.github/actions/shared-checkout/action.yml
@@ -0,0 +1,12 @@
1
+name: Checkout
2
+description: Checkout repository for pull requests and branches
3
+runs:
4
+ using: "composite"
5
+ steps:
6
+ - name: Checkout repository
7
+ uses: actions/checkout@v4
8
+ with:
9
+ repository: ${{ github.event.pull_request.head.repo.full_name || github.repository }}
10
+ ref: ${{ github.event.pull_request.head.sha || github.sha }}
11
+ fetch-depth: 0
12
+ fetch-tags: true
0 commit comments