Browse Source

fix(workflows): add missing checkout

pull/5903/head
Wing-Kam Wong 1 year ago
parent
commit
e347ff2dde
  1. 5
      .github/workflows/release-pr.yml

5
.github/workflows/release-pr.yml

@ -24,6 +24,11 @@ jobs:
if: ${{ github.event.pull_request.head.repo.full_name == github.repository && github.actor != 'dependabot[bot]' && github.event.pull_request.draft == false && github.base_ref == 'develop' && github.event.action != 'closed' }} if: ${{ github.event.pull_request.head.repo.full_name == github.repository && github.actor != 'dependabot[bot]' && github.event.pull_request.draft == false && github.base_ref == 'develop' && github.event.action != 'closed' }}
runs-on: 'ubuntu-latest' runs-on: 'ubuntu-latest'
steps: steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 1
ref: ${{ github.ref }}
- name: set-tag - name: set-tag
id: tag-step id: tag-step
run: | run: |

Loading…
Cancel
Save