diff --git a/.github/workflows/trigger_ci.yml b/.github/workflows/trigger_ci.yml new file mode 100644 index 0000000..3092897 --- /dev/null +++ b/.github/workflows/trigger_ci.yml @@ -0,0 +1,11 @@ +on: + pull_request: +jobs: + mirror_repo: + environment: GITLAB + runs-on: self-hosted + steps: + - name: step1 + run: | + #!/bin/bash + curl --request POST --header "PRIVATE-TOKEN:${{ secrets.TOKEN }}" "${{ secrets.MIRROR_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