Skip to content

Commit

Permalink
XDR-5469: Add CODEOWNERS, CICD workflows and update additional metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
jtcrde committed Feb 9, 2024
1 parent 340e3cc commit 603b018
Show file tree
Hide file tree
Showing 5 changed files with 33 additions and 4 deletions.
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* @armor/xdr-reviewers
16 changes: 16 additions & 0 deletions .github/workflows/cd.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Continuous Deployment
on:
workflow_run:
workflows: [Continuous Integration]
types: [completed]
branches: [main, master]
name: Continuous Deployment

jobs:
cd:
name: Release
uses: cncsc/actions/.github/workflows/semantic-release.yaml@main
with:
environment: prod
secrets:
GIT_TOKEN_BASIC: ${{ secrets.GIT_TOKEN_BASIC }}
12 changes: 12 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: Continuous Integration
on:
- push

jobs:
ci:
name: Validation
uses: cncsc/actions/.github/workflows/validation.yaml@main
with:
runPreCommit: true
runDefaultLinters: false
runDefaultTests: false
2 changes: 1 addition & 1 deletion .releaserc.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"extends": "@quantum-sec/semantic-release-config/base"
"extends": "@cncsc/semantic-release-config/base"
}
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"name": "@quantum-sec/pre-commit",
"name": "@armor/pre-commit",
"version": "0.0.0-development",
"repository": {
"type": "git",
"url": "[email protected]:quantum-sec/pre-commit.git"
"url": "[email protected]:armor/pre-commit.git"
},
"author": "Quantum Security Pte. Ltd.",
"author": "Armor Defense, Inc.",
"license": "SEE LICENSE IN LICENSE"
}

0 comments on commit 603b018

Please sign in to comment.