Skip to content

Commit

Permalink
clone and use reusable workflow (#1077)
Browse files Browse the repository at this point in the history
  • Loading branch information
sgmagar authored Jan 22, 2024
1 parent 373bb90 commit 64c9190
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/release-to-qa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,17 @@ jobs:
run: |
git clone https://${{ secrets.GIT_TOKEN }}@github.com/${{ github.repository }}.git
- name: Clone Reusable Actions Repo
run: |
git clone -b master https://${{ secrets.GIT_TOKEN }}@github.com/crowdbotics/github-actions.git
- name: Checkout branch
working-directory: ${{ env.working-directory }}
run: |
git checkout ${{ env.pr-branch }}
- name: Run Release to QA Workflow
uses: crowdbotics/github-actions/release-to-qa@master
uses: ./github-actions/release-to-qa
with:
working-directory: ${{ env.working-directory }}
GIT_TOKEN: ${{ secrets.GIT_TOKEN }}
Expand Down

0 comments on commit 64c9190

Please sign in to comment.