Skip to content

Commit 40eefb3

Browse files
committed
Adding GH actions
1 parent ec61f42 commit 40eefb3

6 files changed

Lines changed: 43 additions & 273 deletions

File tree

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Release Suite
2+
3+
on:
4+
push:
5+
tags:
6+
- test.**
7+
- release.**
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Trigger dataplane publish workflow
14+
env:
15+
GH_TOKEN: ${{ secrets.C3PO_ACCESS_TOKEN }}
16+
run: |
17+
gh workflow run publish.yaml \
18+
--repo Observo-Inc/dataplane-build \
19+
--ref main \
20+
-f git_ref=${{ github.ref }} \
21+
-f channel=custom

.github/workflows/observo.test.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Trigger Dataplane Test
2+
3+
on:
4+
pull_request_review:
5+
types: [submitted]
6+
push:
7+
branches:
8+
- master
9+
- pre_merge
10+
11+
jobs:
12+
trigger:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- name: Trigger dataplane test workflow
16+
env:
17+
GH_TOKEN: ${{ secrets.C3PO_ACCESS_TOKEN }}
18+
run: |
19+
gh workflow run test.yml \
20+
--repo Observo-Inc/dataplane-build \
21+
--ref main \
22+
-f git_ref=${{ github.ref }}

.github/workflows/publish.yaml

Lines changed: 0 additions & 163 deletions
This file was deleted.

.github/workflows/release.yaml

Lines changed: 0 additions & 14 deletions
This file was deleted.

.github/workflows/test.yml

Lines changed: 0 additions & 82 deletions
This file was deleted.

.github/workflows/test_release.yaml

Lines changed: 0 additions & 14 deletions
This file was deleted.

0 commit comments

Comments
 (0)