-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
111 additions
and
11 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,74 @@ | ||
name: Bump version | ||
on: | ||
push: | ||
branches: | ||
- main | ||
jobs: | ||
bumpversion: | ||
runs-on: ubuntu-latest | ||
outputs: | ||
version: ${{ steps.tag_version.outputs.new_version }} | ||
previous_tag: ${{ steps.tag_version.outputs.previous_tag }} | ||
bump_commit_sha: ${{ steps.bumpversion.outputs.commit_hash }} | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
token: ${{ secrets.DEDALO_PAT }} | ||
- name: Get next version | ||
id: tag_version | ||
uses: mathieudutour/[email protected] | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
default_bump: false | ||
default_prerelease_bump: false | ||
dry_run: true | ||
- name: Set up Python 3.8 | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: "3.8" | ||
- name: Create bumpversion | ||
if: steps.tag_version.outputs.new_version | ||
run: | | ||
pip install bumpversion | ||
bumpversion --new-version ${{ steps.tag_version.outputs.new_version }} setup.cfg | ||
- name: Update Changelog | ||
if: steps.tag_version.outputs.new_version | ||
uses: stefanzweifel/[email protected] | ||
with: | ||
latest-version: ${{ steps.tag_version.outputs.new_tag }} | ||
release-notes: ${{ steps.tag_version.outputs.changelog }} | ||
- name: Commit bumpversion | ||
id: bumpversion | ||
if: steps.tag_version.outputs.new_version | ||
uses: stefanzweifel/[email protected] | ||
with: | ||
branch: ${{ github.ref }} | ||
commit_message: "docs(bumpversion): ${{ steps.tag_version.outputs.previous_tag }} → ${{ steps.tag_version.outputs.new_version }}" | ||
file_pattern: setup.cfg CHANGELOG.md tvm/* | ||
release: | ||
needs: bumpversion | ||
if: needs.bumpversion.outputs.version | ||
runs-on: ubuntu-latest | ||
outputs: | ||
tag: ${{ steps.tag_version.outputs.new_tag }} | ||
changelog: ${{ steps.tag_version.outputs.changelog }} | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
token: ${{ secrets.DEDALO_PAT }} | ||
- name: Create tag | ||
id: tag_version | ||
uses: mathieudutour/[email protected] | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
commit_sha: ${{ needs.bumpversion.outputs.bump_commit_sha }} | ||
default_bump: false | ||
default_prerelease_bump: false | ||
- name: Create a GitHub release | ||
if: steps.tag_version.outputs.new_tag | ||
uses: ncipollo/release-action@v1 | ||
with: | ||
tag: ${{ steps.tag_version.outputs.new_tag }} | ||
name: Release ${{ steps.tag_version.outputs.new_tag }} | ||
body: ${{ steps.tag_version.outputs.changelog }} | ||
draft: true |
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,25 @@ | ||
name: labeler | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- 'main' | ||
|
||
jobs: | ||
labeler: | ||
runs-on: ubuntu-latest | ||
name: Label the PR size | ||
steps: | ||
- uses: CodelyTV/[email protected] | ||
with: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
xs_max_size: '10' | ||
s_max_size: '100' | ||
m_max_size: '500' | ||
l_max_size: '1000' | ||
fail_if_xl: 'true' | ||
message_if_xl: > | ||
'This PR exceeds the recommended size of 1000 lines. | ||
Please make sure you are NOT addressing multiple issues with one PR. | ||
Note this PR might be rejected due to its size.' | ||
github_api_url: 'api.github.com' |
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
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
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
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