From 7397d7f5eae9465b44b84ad860fa94d407fa53e6 Mon Sep 17 00:00:00 2001 From: guipublic Date: Mon, 8 Jul 2024 15:41:32 +0000 Subject: [PATCH 1/2] dummy workflow (temp) --- .github/workflows/mirror-external_libs.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/workflows/mirror-external_libs.yml diff --git a/.github/workflows/mirror-external_libs.yml b/.github/workflows/mirror-external_libs.yml new file mode 100644 index 00000000000..3884390489e --- /dev/null +++ b/.github/workflows/mirror-external_libs.yml @@ -0,0 +1,11 @@ +name: Mirror Repositories + +on: + pull_request: + branches: + - master +jobs: + lint: + runs-on: ubuntu-latest + steps: + - run: echo Dummy workflow TODO \ No newline at end of file From aa7ec1b6342ff8f5100df2b627d9b8380cdcf64e Mon Sep 17 00:00:00 2001 From: guipublic Date: Mon, 8 Jul 2024 16:04:23 +0000 Subject: [PATCH 2/2] trying with workflow dispatch --- .github/workflows/mirror-external_libs.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/mirror-external_libs.yml b/.github/workflows/mirror-external_libs.yml index 3884390489e..e577ac0ed92 100644 --- a/.github/workflows/mirror-external_libs.yml +++ b/.github/workflows/mirror-external_libs.yml @@ -1,9 +1,6 @@ name: Mirror Repositories - on: - pull_request: - branches: - - master + workflow_dispatch: {} jobs: lint: runs-on: ubuntu-latest