From 6d992f77bb2b36ecf1a8812c58c259b35fd6860a Mon Sep 17 00:00:00 2001 From: Alexander Samusev <41779041+alvicsam@users.noreply.github.com> Date: Tue, 27 Aug 2024 16:31:49 +0200 Subject: [PATCH] ci (#1) * ci * sh-runner --- .github/workflows/gha-pass.yml | 22 ++++++++++++++++++++++ .github/workflows/gha.yml | 22 ++++++++++++++++++++++ 2 files changed, 44 insertions(+) create mode 100644 .github/workflows/gha-pass.yml create mode 100644 .github/workflows/gha.yml diff --git a/.github/workflows/gha-pass.yml b/.github/workflows/gha-pass.yml new file mode 100644 index 0000000..bbcf253 --- /dev/null +++ b/.github/workflows/gha-pass.yml @@ -0,0 +1,22 @@ +name: github action that always pass + +on: + push: + branches: + - main + pull_request: + types: [opened, synchronize, reopened, ready_for_review, labeled] + merge_group: + +concurrency: + group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} + cancel-in-progress: true + +permissions: {} + +jobs: + test-job-good: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - run: sleep 180 diff --git a/.github/workflows/gha.yml b/.github/workflows/gha.yml new file mode 100644 index 0000000..ce279d3 --- /dev/null +++ b/.github/workflows/gha.yml @@ -0,0 +1,22 @@ +name: github action + +on: + push: + branches: + - main + pull_request: + types: [opened, synchronize, reopened, ready_for_review, labeled] + merge_group: + +concurrency: + group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} + cancel-in-progress: true + +permissions: {} + +jobs: + test-job: + runs-on: arc-runners-default-stg + steps: + - uses: actions/checkout@v4 + - run: sleep 60