Skip to content

Commit bc85868

Browse files
authored
Merge pull request #47 from fs-webdev/cd-cd_v2
[CI/CD v2] migrate to blueprint 1.1
2 parents 316ca5f + bb71991 commit bc85868

File tree

2 files changed

+63
-0
lines changed

2 files changed

+63
-0
lines changed
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
#
2+
# © 2024 by Intellectual Reserve, Inc. All rights reserved.
3+
#
4+
5+
name: CI/CD pipeline-generation 1 sync-blueprint default
6+
'on':
7+
- workflow_dispatch
8+
jobs:
9+
pipelines_sync-blueprint_generate:
10+
uses: >-
11+
fs-cicd/paas-cicd-workflows/.github/workflows/pipelines_pipeline-generation_generate.yaml@v1
12+
secrets:
13+
SPLUNK_TOKEN: ${{ secrets.SPLUNK_TOKEN }}
14+
with:
15+
blueprint_component_name: sync-blueprint
16+
needs_blueprint_operations: '[]'
17+
needs: []

blueprint.yml

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
#
2+
# © 2023 by Intellectual Reserve, Inc. All rights reserved.
3+
#
4+
5+
name: frontier-eslint-config-frontier-react
6+
version: "1.1"
7+
builds:
8+
- name: node-build
9+
type: build-artifacts
10+
version: "1"
11+
operations:
12+
- name: publish
13+
properties:
14+
build_tool: npm
15+
directory: ./
16+
runtimes:
17+
node:
18+
version: "20"
19+
- name: code-analysis
20+
type: code-analysis
21+
version: "1"
22+
operations:
23+
- name: analyze
24+
pipelines:
25+
- name: master-build-deploy
26+
type: push-to-master
27+
version: "1"
28+
operations:
29+
- name: start
30+
properties:
31+
triggers:
32+
type: gha
33+
on:
34+
push:
35+
branches: ["master"]
36+
- name: pr-build
37+
type: pull-request
38+
version: "1"
39+
operations:
40+
- name: start
41+
properties:
42+
triggers:
43+
type: gha
44+
on:
45+
pull_request:
46+
branches: ["master"]

0 commit comments

Comments
 (0)