Skip to content

Commit c50be1b

Browse files
author
Jon Lockwood
committed
Merge pull request 'ci: add ci for both Gitea and Github repos' (#4) from gitea-github-ci into development
Reviewed-on: https://nofusscomputing.com/git/ansible-collections/git-events/pulls/4
2 parents 97c196e + c6777a9 commit c50be1b

File tree

5 files changed

+63
-0
lines changed

5 files changed

+63
-0
lines changed

.cz.yaml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
---
2+
commitizen:
3+
customize:
4+
change_type_map:
5+
feature: Features
6+
fix: Fixes
7+
refactor: Refactoring
8+
test: Tests
9+
change_type_order:
10+
- BREAKING CHANGE
11+
- feat
12+
- fix
13+
- test
14+
- refactor
15+
commit_parser: ^(?P<change_type>feat|fix|test|refactor|perf|BREAKING CHANGE)(?:\((?P<scope>[^()\r\n]*)\)|\()?(?P<breaking>!)?:\s(?P<message>.*)?
16+
name: cz_customize
17+
prerelease_offset: 1
18+
tag_format: $version
19+
update_changelog_on_bump: false
20+
version: 0.0.1
21+
version_scheme: semver

.gitea/.gitkeep

Whitespace-only changes.

.gitea/workflows/.gitkeep

Whitespace-only changes.

.github/workflows/ci.yaml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
---
2+
3+
name: 'CI'
4+
5+
6+
on:
7+
push:
8+
branches:
9+
- '**'
10+
tags:
11+
- '*'
12+
13+
jobs:
14+
15+
16+
docker:
17+
name: 'Docker'
18+
uses: nofusscomputing/action_docker/.github/workflows/docker.yaml@development
19+
with:
20+
DOCKER_BUILD_IMAGE_NAME: "nofusscomputing/git-event-problem-matcher"
21+
DOCKER_PUBLISH_REGISTRY: "docker.io"
22+
DOCKER_PUBLISH_IMAGE_NAME: "nofusscomputing/git-event-problem-matcher"
23+
secrets:
24+
DOCKER_PUBLISH_USERNAME: ${{ secrets.NFC_DOCKERHUB_USERNAME }}
25+
DOCKER_PUBLISH_PASSWORD: ${{ secrets.NFC_DOCKERHUB_TOKEN }}
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
3+
name: Pull Requests
4+
5+
6+
on:
7+
pull_request: {}
8+
9+
jobs:
10+
11+
ci-test:
12+
runs-on: ubuntu-latest
13+
steps:
14+
15+
- name: Test
16+
run: |
17+
echo "github";

0 commit comments

Comments
 (0)