diff --git a/.github/workflows/trigger_ci.yml b/.github/workflows/trigger_ci.yml new file mode 100644 index 0000000..1c0ef20 --- /dev/null +++ b/.github/workflows/trigger_ci.yml @@ -0,0 +1,20 @@ +on: + pull_request: +jobs: + mirror_repo: + environment: GITLAB + runs-on: self-hosted + steps: + - name: Sync Mirror Repository + run: | + #!/bin/bash + curl --request POST --header "PRIVATE-TOKEN:${{ secrets.TOKEN }}" "${{ secrets.MIRROR_URL }}" + trigger-ci: + environment: GITLAB + needs: mirror_repo + runs-on: self-hosted + steps: + - name: Trigger Pipeline + run: | + #!/bin/bash + curl --fail --request POST --form token=${{ secrets.PIPELINE_TOKEN }} -F ref=${GITHUB_HEAD_REF} -F variables[RULE_WORKFLOW]="DS_TEST_TRITON_CLI" "${{ secrets.PIPELINE_URL }}" diff --git a/CODEOWNERS b/CODEOWNERS new file mode 100644 index 0000000..a47659c --- /dev/null +++ b/CODEOWNERS @@ -0,0 +1,7 @@ +############################################################## +# List of approvers/reviewers for Developer Tools +############################################################## +# Learn about CODEOWNERS file format: +# https://help.github.com/en/articles/about-code-owners +# These owners will be the default owners for everything in the github ci workflows +.github/workflows/* @nvda-mesharma