-
Notifications
You must be signed in to change notification settings - Fork 27
[DO NOT MERGE] Test go canonicalizer #242
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from 3 commits
6f89bc3
45dfcd1
4abe0f6
bb75613
8fd98c9
46d1a16
9be1cec
dbd6fb1
9ba86f0
5fa39ad
34e359e
097eeaf
7f81717
a8c6384
3c65707
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,21 @@ | ||
| name: gocan | ||
| on: | ||
| pull_request: | ||
|
|
||
| # Cancel the workflow in progress in newer build is about to start. | ||
| concurrency: | ||
| group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. P2 | Confidence: Medium Speculative: This new workflow downloads an external binary ( |
||
| cancel-in-progress: true | ||
|
|
||
| jobs: | ||
| cloc: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Checkout code | ||
| uses: actions/checkout@v4 | ||
| - name: Annotate layout-only changes | ||
| run: | | ||
| curl -sLO https://github.com/vearutop/gocan/releases/download/v0.0.1/linux_amd64.tar.gz && tar xf linux_amd64.tar.gz | ||
| gocan_hash=$(git hash-object ./gocan) | ||
| [ "$gocan_hash" == "d3484d7cae5f9314243ee932dbabd3e6ba4aed63" ] || (echo "::error::unexpected hash for gocan, possible tampering: $gocan_hash" && exit 1) | ||
| ./gocan -gh-annotate -gh-base "${{ github.event.pull_request.base.sha }}" | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
P2 | Confidence: High
The change appears to be a test or typo ("requestaaaaaa") in a template file name. This degrades the professionalism of the project's issue templates and could confuse users trying to submit feature requests. It's a minor maintainability issue.