Skip to content

Commit 21b5730

Browse files
authored
Merge pull request #12 from datarootsio/feature/ci-cd-pipeline
Added debug workflow
2 parents 6490c4e + 2235614 commit 21b5730

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/ml-pipeline.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,20 @@ on:
88
- '**'
99
tags-ignore:
1010
- v*
11+
pull_request:
12+
types: [closed]
13+
branches:
14+
- master
1115

1216
jobs:
17+
debug:
18+
runs-on: ubuntu-latest
19+
steps:
20+
- name: Dump GitHub context
21+
env:
22+
GITHUB_CONTEXT: ${{ toJSON(github) }}
23+
run: echo "$GITHUB_CONTEXT"
24+
1325
# will run tests on every commit, except when merging a pull request
1426
tests:
1527
if: github.event.pull_request.merged == false

0 commit comments

Comments
 (0)