Skip to content

Commit

Permalink
feat: add workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
zifeo committed May 4, 2023
1 parent 4c7a755 commit 9abb3b3
Show file tree
Hide file tree
Showing 21 changed files with 76 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
version: 2
updates:
- package-ecosystem: github-actions
directory: /
schedule:
interval: monthly
15 changes: 15 additions & 0 deletions .github/pr-title-check.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"LABEL": {
"name": "title-needs-formatting",
"color": "eee"
},
"CHECKS": {
"regexp": "(?<type>build|chore|ci|docs|feat|fix|perf|refactor|revert|test)(?<scope>(?:([^()\\r\\n]*)|()?(?<breaking>!)?:)(?<subject>:.*)?",
"regexpFlags": "i"
},
"MESSAGES": {
"success": "All OK",
"failure": "Failing CI test",
"notice": ""
}
}
18 changes: 18 additions & 0 deletions .github/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
changelog:
exclude:
authors:
- octocat
- dependabot
categories:
- title: Breaking changes 🛠
labels:
- breaking-change
- title: Documentation improvements 📖
labels:
- documentation
- title: Bug fixes 🐛
labels:
- bug
- title: New features 🎉
labels:
- "*"
15 changes: 15 additions & 0 deletions .github/workflows/pr-title-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
on:
pull_request:
types:
- opened
- edited
- synchronize
- ready_for_review

jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: thehanimo/[email protected]
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
20 changes: 20 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
on:
push:
branches:
- main

jobs:
test-pre-commit:
runs-on: ubuntu-latest
permissions:
contents: write

steps:
- uses: actions/checkout@v3
- uses: azure/setup-helm@v3
- uses: helm/[email protected]
env:
charts_repo_url: https://charts.metatype.dev
skip_existing: true
mark_as_latest: true
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
.DS_Store
.vscode
**/charts/*.tgz
File renamed without changes.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# [Metatype](https://github.com/metatypedev/metatype) charts
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Binary file removed metatype/typegate/charts/common-1.16.1.tgz
Binary file not shown.
Binary file removed metatype/typegate/charts/redis-17.0.1.tgz
Binary file not shown.

0 comments on commit 9abb3b3

Please sign in to comment.