Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
62 changes: 0 additions & 62 deletions .circleci/config.yml

This file was deleted.

4 changes: 0 additions & 4 deletions .eslintignore

This file was deleted.

71 changes: 0 additions & 71 deletions .eslintrc

This file was deleted.

188 changes: 0 additions & 188 deletions .github/workflows/README.md

This file was deleted.

20 changes: 20 additions & 0 deletions .github/workflows/bump-alpha.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: "Bump Alpha"

on:
push:
branches:
- "master-2"

concurrency:
group: bump-alpha-${{ github.ref_name }}
cancel-in-progress: false

jobs:
bump-alpha:
uses: ./.github/workflows/bump-common.yml
with:
bump_name: "Bump Alpha"
default_bump: "prerelease"
preid: "alpha"
rc_wording: ""
tag_prefix: "prerelease-"
20 changes: 20 additions & 0 deletions .github/workflows/bump-beta.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: "Bump Minor"

on:
push:
branches:
- "master"

concurrency:
group: bump-minor-${{ github.ref_name }}
cancel-in-progress: false

jobs:
bump-minor:
uses: ./.github/workflows/bump-common.yml
with:
bump_name: "Bump Minor"
major_wording: "breaking:"
minor_wording: "feature:"
patch_wording: "fix:"
tag_prefix: "release-"
Loading
Loading