generated from aetheric-oss/svc-template-rust
-
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.
feat: add release checklist commenter
- Loading branch information
1 parent
838cac4
commit 285636e
Showing
3 changed files
with
459 additions
and
0 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,32 @@ | ||
## DO NOT EDIT! | ||
# This file was provisioned by Terraform | ||
# File origin: https://github.com/Arrow-air/tf-github/tree/main/src/templates/rust-all/.github/workflows/rust_ci.yml | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- develop | ||
- main | ||
paths: | ||
- "**/*.rs" | ||
- "Cargo.lock" | ||
- "**/Cargo.toml" | ||
|
||
name: Release Checklist | ||
|
||
jobs: | ||
release_checklist: | ||
name: Release Checklist | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- run: echo CHECKLIST_OUTPUT=$(make release-checklist) >> $GITHUB_ENV | ||
- uses: thollander/actions-comment-pull-request@v1 | ||
continue-on-error: true | ||
with: | ||
message: | | ||
:clipboard: Release Checklist :white_check_mark: | ||
<details> | ||
${{ env.CHECKLIST_OUTPUT }} | ||
</details> | ||
comment_includes: ':clipboard: Release Checklist :white_check_mark:' |
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.