From 773320814580473a43b26a101d947fceb2eafb9e Mon Sep 17 00:00:00 2001 From: Sun Serega Date: Thu, 8 Aug 2024 23:27:11 +0200 Subject: [PATCH] Add upstream pretest workflow --- .github/workflows/on commit.yaml | 1 - .github/workflows/upstream pretest.yaml | 26 +++++++++++++++++++++++++ 2 files changed, 26 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/upstream pretest.yaml diff --git a/.github/workflows/on commit.yaml b/.github/workflows/on commit.yaml index 49c24040..d93d0455 100644 --- a/.github/workflows/on commit.yaml +++ b/.github/workflows/on commit.yaml @@ -1,7 +1,6 @@ name: Pack and test on: - push: schedule: - cron: '0 0 * * *' pull_request: diff --git a/.github/workflows/upstream pretest.yaml b/.github/workflows/upstream pretest.yaml new file mode 100644 index 00000000..67995b65 --- /dev/null +++ b/.github/workflows/upstream pretest.yaml @@ -0,0 +1,26 @@ +name: Upstream pretest + +on: + push: + schedule: + - cron: '0 0 * * *' + workflow_dispatch: + +#concurrency: +# group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} +# cancel-in-progress: false +# +permissions: + contents: write + +jobs: + enmr-PRs: + runs-on: windows-latest + + steps: + - uses: actions/checkout@main + + - run: | + + git config --file .gitmodules --name-only --get-regexp path + \ No newline at end of file