generated from bazel-contrib/rules-template
-
-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore: setup tagging in GHA * chore: easier releasing * Update release.yml * Update CONTRIBUTING.md
- Loading branch information
Showing
3 changed files
with
67 additions
and
6 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 |
---|---|---|
@@ -1,16 +1,22 @@ | ||
# Cut a release whenever a new tag is pushed to the repo. | ||
# You should use an annotated tag, like `git tag -a v1.2.3` | ||
# and put the release notes into the commit message for the tag. | ||
name: Release | ||
|
||
on: | ||
# Can be triggered from the tag.yaml workflow | ||
workflow_call: | ||
inputs: | ||
tag_name: | ||
required: true | ||
type: string | ||
# Or, developers can manually push a tag from their clone | ||
push: | ||
tags: | ||
- "v*.*.*" | ||
|
||
jobs: | ||
release: | ||
uses: bazel-contrib/.github/.github/workflows/release_ruleset.yaml@v5 | ||
uses: bazel-contrib/.github/.github/workflows/release_ruleset.yaml@23b69a7ea7c1e36d0a92980d049ba72e6f4809f7 # https://github.com/bazel-contrib/.github/pull/19 | ||
with: | ||
prerelease: false | ||
release_files: rules_lint-*.tar.gz | ||
tag_name: ${{ inputs.tag_name }} |
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,41 @@ | ||
# Tag a new release | ||
# This is easier than having to run manual `git` operations on a local clone. | ||
# It also runs on a schedule so we don't leave commits unreleased indefinitely | ||
# (avoiding users having to ping "hey could someone cut a release"). | ||
|
||
name: Tag a Release | ||
on: | ||
# Allow devs to tag manually through the GitHub UI. | ||
# For example after landing a fix that customers are waiting for. | ||
workflow_dispatch: | ||
|
||
# Run every Monday at 3PM UTC (8AM PST) | ||
# NB: would prefer to trigger less frequently, perhaps bi-weekly, see | ||
# https://medium.com/@VeselyCodes/bi-weekly-github-actions-7bea6be7bd96 | ||
schedule: | ||
- cron: "0 15 * * 1" | ||
|
||
jobs: | ||
tag: | ||
permissions: | ||
contents: write # allow create tag | ||
runs-on: ubuntu-latest | ||
outputs: | ||
new-tag: ${{ steps.ccv.outputs.new-tag }} | ||
new-tag-version: ${{steps.ccv.outputs.new-tag-version}} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
# Need enough history to find the prior release tag | ||
fetch-depth: 0 | ||
- name: Bump tag if necessary | ||
id: ccv | ||
uses: smlx/ccv@d3de774e9b607b079940a7a86952f44643743336 # v0.9.0 | ||
release: | ||
needs: tag | ||
uses: ./.github/workflows/release.yml | ||
with: | ||
tag_name: ${{ needs.tag.outputs.new-tag-version }} | ||
if: needs.tag.outputs.new-tag == 'true' | ||
permissions: | ||
contents: write # allow create release |
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