Skip to content

Commit

Permalink
ci (#1)
Browse files Browse the repository at this point in the history
* ci

* sh-runner
  • Loading branch information
alvicsam authored Aug 27, 2024
1 parent 8f73513 commit 6d992f7
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/gha-pass.yml
Original file line number Diff line number Diff line change
@@ -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
22 changes: 22 additions & 0 deletions .github/workflows/gha.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 6d992f7

Please sign in to comment.