.github/workflows/workflow_call_qa.yml #13
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: Clone Wordpress QA | |
on: | |
workflow_dispatch: | |
inputs: | |
postID: | |
required: true | |
type: string | |
description: "The ID of the post to clone" | |
default: "24531" | |
jobs: | |
clone_post: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Clone Post | |
uses: ./.github/workflows/clone-post.yml | |
with: | |
environment: QA | |
postID: ${{ github.event.inputs.postID }} | |
upload_to_s3: | |
runs-on: ubuntu-latest | |
needs: [clone_post] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Clone Post | |
uses: ./.github/workflows/upload_to_s3.yml | |