Skip to content

Commit f250147

Browse files
author
Scaffolder
committed
initial commit
0 parents  commit f250147

File tree

6 files changed

+56
-0
lines changed

6 files changed

+56
-0
lines changed

.github/CODEOWNERS

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
* @DocPlanner/${{ parameters.owner | parseEntityRef | pick('name') }}
2+
3+
#DevOps
4+
.docker/ @DocPlanner/ops
5+
.policies/ @DocPlanner/ops
6+
.github/ @DocPlanner/ops
7+
.github/workflows/ @docplannersec @DocPlanner/ops
8+
.github/workflows/validate_workflows.yaml @DocPlanner/ops

.github/workflows/gitleaks_pr.yaml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
name: gitleaks
2+
on: [push, pull_request]
3+
4+
jobs:
5+
gitleaks:
6+
runs-on: ubuntu-latest
7+
steps:
8+
- uses: actions/checkout@v3
9+
- name: gitleaks-action
10+
uses: gitleaks/[email protected]
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Auto approve Workflow changes
2+
3+
on:
4+
pull_request:
5+
types:
6+
- opened
7+
- edited
8+
- reopened
9+
- synchronize
10+
paths:
11+
- .github/workflows/**
12+
13+
jobs:
14+
validate-workflow-changes:
15+
uses: Docplanner/devops-pipelines/.github/workflows/validate_workflows.yaml@v1
16+
secrets: inherit
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
package local
2+
3+
#allowed_actions_prefix:={"tj-actions"}
4+
#allowed_secret_usage := {"test":["TESTINGS_APP_TOKEN"],"testb":["APP_TOKEN"]}
5+
#approved_custom_actions := {"echo \\\"\\\\\" > test.txt && base64 -i test.txt"}

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# vue-recruitment-refactor-assignment
2+
3+
Front-end part of recruitment assignment for full stack dev position

catalog-info.yaml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
apiVersion: backstage.io/v1alpha1
2+
kind: Component
3+
metadata:
4+
name: vue-recruitment-refactor-assignment
5+
description: Front-end part of recruitment assignment for full stack dev position
6+
labels:
7+
scaffolder-template-name: create-repository
8+
annotations:
9+
github.com/project-slug: DocPlanner/vue-recruitment-refactor-assignment-front-app
10+
spec:
11+
type: service
12+
lifecycle: experimental
13+
owner: docplanner/${{ parameters.owner | parseEntityRef | pick('name') }}
14+

0 commit comments

Comments
 (0)