-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Close #1236 ### Description of Changes Add packages, and configuration to make automated release work Add an action to release a package every Monday Add an action to check PR title to follow conventional commit pattern
- Loading branch information
1 parent
a35a28e
commit 94fe328
Showing
5 changed files
with
1,526 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
name: PR Title Checks | ||
|
||
on: | ||
pull_request: | ||
types: [opened, synchronize, reopened, edited] | ||
|
||
jobs: | ||
validate-pr-title: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Conventional Commit Validation | ||
uses: ytanikin/[email protected] | ||
with: | ||
task_types: '["feat","fix", "docs", "test", "ci", "refactor", "chore", "revert"]' | ||
add_label: 'false' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
name: Release Every Other Monday | ||
on: | ||
workflow_dispatch: | ||
# Run action at 16:15 PM on Monday (UTC) | ||
# schedule: | ||
# @TODO: the schedule below is weekly. Do byweekly check. | ||
# - cron: '15 16 * * 1' | ||
|
||
# Sets the GITHUB_TOKEN permissions to allow release | ||
permissions: | ||
contents: write | ||
|
||
jobs: | ||
release: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
ssh-key: ${{ secrets.DEPLOY_KEY }} | ||
- name: git config | ||
run: | | ||
git config user.name "${GITHUB_ACTOR}" | ||
git config user.email "${GITHUB_ACTOR}@users.noreply.github.com" | ||
- name: Use Node.js ${{ env.NODE }} | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: ${{ env.NODE }} | ||
- run: yarn | ||
- run: yarn release --ci --verbose | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
{ | ||
"hooks": {}, | ||
"plugins": { | ||
"@release-it/conventional-changelog": { | ||
"preset": { | ||
"name": "conventionalcommits" | ||
} | ||
} | ||
}, | ||
"git": { | ||
"changelog": "git log --pretty=format:\"* %s (%h)\" ${from}...${to}", | ||
"commitMessage": "chore(release): update to version v${version}", | ||
"tagName": "v${version}", | ||
"tagAnnotation": "Release v${version}", | ||
"pushArgs": ["--follow-tags"], | ||
"getLatestTagFromAllRefs": true | ||
}, | ||
"npm": { | ||
"publish": false | ||
}, | ||
"github": { | ||
"release": true, | ||
"releaseName": "V${version}", | ||
"releaseNotes": null, | ||
"autoGenerate": true, | ||
"preRelease": false, | ||
"draft": false | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.