diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 0000000..63d46d9 --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1 @@ +* @armor/xdr-reviewers diff --git a/.github/workflows/cd.yaml b/.github/workflows/cd.yaml new file mode 100644 index 0000000..011489f --- /dev/null +++ b/.github/workflows/cd.yaml @@ -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 }} diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml new file mode 100644 index 0000000..63dcb91 --- /dev/null +++ b/.github/workflows/ci.yaml @@ -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 diff --git a/.releaserc.json b/.releaserc.json index 3764018..abad978 100644 --- a/.releaserc.json +++ b/.releaserc.json @@ -1,3 +1,3 @@ { - "extends": "@quantum-sec/semantic-release-config/base" + "extends": "@cncsc/semantic-release-config/base" } diff --git a/package.json b/package.json index c6685d5..913b678 100644 --- a/package.json +++ b/package.json @@ -1,10 +1,10 @@ { - "name": "@quantum-sec/pre-commit", + "name": "@armor/pre-commit", "version": "0.0.0-development", "repository": { "type": "git", - "url": "git@github.com:quantum-sec/pre-commit.git" + "url": "git@github.com:armor/pre-commit.git" }, - "author": "Quantum Security Pte. Ltd.", + "author": "Armor Defense, Inc.", "license": "SEE LICENSE IN LICENSE" }