Skip to content

Commit

Permalink
Merge pull request #3 from BbolroC/simple-condition
Browse files Browse the repository at this point in the history
Test simple condition
  • Loading branch information
BbolroC authored Aug 2, 2024
2 parents 06d0c7e + b7fb5de commit 1faea42
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/hchoi_test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: hchoi test
on:
push:
branches:
- 'main'
paths:
- '.github/workflows/hchoi_test.yml'
pull_request:
paths:
- '.github/workflows/hchoi_test.yml'
create:
workflow_dispatch:

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

jobs:
hchoi_test:
if: github.event.pull_request.merged == false
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
with:
submodules: true

- name: Echo hello world
run: echo "Hello, world!"

0 comments on commit 1faea42

Please sign in to comment.