-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1087 from crowdbotics/qa
Merge QA to Master
- Loading branch information
Showing
6 changed files
with
146 additions
and
16 deletions.
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
name: release-to-qa | ||
|
||
on: | ||
workflow_dispatch: | ||
repository_dispatch: | ||
types: | ||
- release-to-qa | ||
|
||
jobs: | ||
tag-and-pr: | ||
runs-on: ubuntu-latest | ||
env: | ||
working-directory: ./modules | ||
base-branch: qa | ||
pr-branch: develop | ||
pr-label: automerge | ||
steps: | ||
- name: Repo Clone | ||
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: ./github-actions/release-to-qa | ||
with: | ||
working-directory: ${{ env.working-directory }} | ||
GIT_TOKEN: ${{ secrets.GIT_TOKEN }} | ||
base-branch: ${{ env.base-branch }} | ||
pr-branch: ${{ env.pr-branch }} | ||
pr-label: ${{ env.pr-label }} |
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
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
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