summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJessica Wagantall <jwagantall@linuxfoundation.org>2023-09-01 10:24:35 -0700
committerJessica Wagantall <jwagantall@linuxfoundation.org>2023-09-01 10:33:52 -0700
commit68cac30aafbab6905f444cea6ef8c9032aa38859 (patch)
tree7ea54b36a7d0147a15ea093a7493e4bbaa7898ec
parent33bc0886ce58f500d193ffb83f267b4cdf382be2 (diff)
CI: Migrate RTDv3 verify job
Run in GitHub Actions for all repos Issue-ID: CIMAN-33 Change-Id: Ia5f1e45ba0875cdaa003ea63c4ba83d402616846 Signed-off-by: Jessica Wagantall <jwagantall@linuxfoundation.org>
-rw-r--r--.github/workflows/gerrit-required-verify.yaml20
1 files changed, 19 insertions, 1 deletions
diff --git a/.github/workflows/gerrit-required-verify.yaml b/.github/workflows/gerrit-required-verify.yaml
index ab0b0b9..a6a5adc 100644
--- a/.github/workflows/gerrit-required-verify.yaml
+++ b/.github/workflows/gerrit-required-verify.yaml
@@ -105,10 +105,28 @@ jobs:
secrets:
GERRIT_SSH_REQUIRED_PRIVKEY: ${{ secrets.GERRIT_SSH_REQUIRED_PRIVKEY }}
+ rtd-validation:
+ needs: prepare
+ # yamllint disable-line rule:line-length
+ uses: lfit/releng-reusable-workflows/.github/workflows/gerrit-compose-required-rtdv3-verify.yaml@main
+ with:
+ GERRIT_BRANCH: ${{ inputs.GERRIT_BRANCH }}
+ GERRIT_CHANGE_ID: ${{ inputs.GERRIT_CHANGE_ID }}
+ GERRIT_CHANGE_NUMBER: ${{ inputs.GERRIT_CHANGE_NUMBER }}
+ GERRIT_CHANGE_URL: ${{ inputs.GERRIT_CHANGE_URL }}
+ GERRIT_EVENT_TYPE: ${{ inputs.GERRIT_EVENT_TYPE }}
+ GERRIT_PATCHSET_NUMBER: ${{ inputs.GERRIT_PATCHSET_NUMBER }}
+ GERRIT_PATCHSET_REVISION: ${{ inputs.GERRIT_PATCHSET_REVISION }}
+ GERRIT_PROJECT: ${{ inputs.GERRIT_PROJECT }}
+ GERRIT_REFSPEC: ${{ inputs.GERRIT_REFSPEC }}
+ TARGET_REPO: ${{ inputs.TARGET_REPO }}
+ secrets:
+ RTD_TOKEN: ${{ secrets.RTD_TOKEN }}
+
vote:
if: ${{ always() }}
# yamllint enable rule:line-length
- needs: [prepare, doc-rules-validation, info-yaml-verify]
+ needs: [prepare, doc-rules-validation, info-yaml-verify, rtd-validation]
runs-on: ubuntu-latest
steps:
- uses: technote-space/workflow-conclusion-action@v3