diff --git a/.cz.yaml b/.cz.yaml new file mode 100644 index 0000000..3b76791 --- /dev/null +++ b/.cz.yaml @@ -0,0 +1,21 @@ +--- +commitizen: + customize: + change_type_map: + feature: Features + fix: Fixes + refactor: Refactoring + test: Tests + change_type_order: + - BREAKING CHANGE + - feat + - fix + - test + - refactor + commit_parser: ^(?Pfeat|fix|test|refactor|perf|BREAKING CHANGE)(?:\((?P[^()\r\n]*)\)|\()?(?P!)?:\s(?P.*)? + name: cz_customize + prerelease_offset: 1 + tag_format: $version + update_changelog_on_bump: false + version: 0.0.1 + version_scheme: semver diff --git a/.gitea/.gitkeep b/.gitea/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/.gitea/workflows/.gitkeep b/.gitea/workflows/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml new file mode 100644 index 0000000..cbb9801 --- /dev/null +++ b/.github/workflows/ci.yaml @@ -0,0 +1,25 @@ +--- + +name: 'CI' + + +on: + push: + branches: + - '**' + tags: + - '*' + +jobs: + + + docker: + name: 'Docker' + uses: nofusscomputing/action_docker/.github/workflows/docker.yaml@development + with: + DOCKER_BUILD_IMAGE_NAME: "nofusscomputing/git-event-problem-matcher" + DOCKER_PUBLISH_REGISTRY: "docker.io" + DOCKER_PUBLISH_IMAGE_NAME: "nofusscomputing/git-event-problem-matcher" + secrets: + DOCKER_PUBLISH_USERNAME: ${{ secrets.NFC_DOCKERHUB_USERNAME }} + DOCKER_PUBLISH_PASSWORD: ${{ secrets.NFC_DOCKERHUB_TOKEN }} diff --git a/.github/workflows/pull_request.yaml b/.github/workflows/pull_request.yaml new file mode 100644 index 0000000..c34b802 --- /dev/null +++ b/.github/workflows/pull_request.yaml @@ -0,0 +1,17 @@ +--- + +name: Pull Requests + + +on: + pull_request: {} + +jobs: + + ci-test: + runs-on: ubuntu-latest + steps: + + - name: Test + run: | + echo "github";