-
Notifications
You must be signed in to change notification settings - Fork 12
Rider test #73
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
Merged
Merged
Rider test #73
Changes from all commits
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
a51661a
Merge pull request #15 from secondlife/develop
Rider-Linden 5840b05
Merge branch 'develop'
Rider-Linden 2ed99fe
Merge branch 'develop'
Rider-Linden a0fcbc3
Merge branch 'develop'
Rider-Linden 1e9a865
It should upload the vsix file too.
Rider-Linden 00376bc
Merge branch 'develop'
Rider-Linden 8594e0f
Merge branch 'develop'
Rider-Linden 4f00273
Merge branch 'develop'
Rider-Linden 6d5c9c1
Merge branch 'develop'
Rider-Linden d31f5d9
Updating build.
Rider-Linden 88e7917
Build changes
Rider-Linden 2a9bbf4
reorder jobs
Rider-Linden c32d90d
update permissions
Rider-Linden 75f1463
Validation
Rider-Linden 93e355f
echo params
Rider-Linden 743f1f2
Fix the release notes gen.
Rider-Linden 4fe0fc6
Update versions in docs and release page.
Rider-Linden d32f69e
Update tags and release page. File commit and push is disable.
Rider-Linden 4a9d17e
Force build.
Rider-Linden d696fa2
Force build.
Rider-Linden b27b30e
Merge branch 'rider-test' of github.com:secondlife/sl-vscode-plugin i…
Rider-Linden fe4d644
PLace documentation changes on a branch and create PRs into dev and m…
Rider-Linden c5fabb8
Finalize and publish workflow changes.
Rider-Linden 9e9d3a7
Change default branch for release from 'rider-test' to 'develop'
Rider-Linden 889ebb3
Apply suggestions from code review
Rider-Linden File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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,48 @@ | ||
| name: Generate Release Notes | ||
|
|
||
| on: | ||
| workflow_call: | ||
| inputs: | ||
| tag_name: | ||
| description: Tag name to generate release notes for | ||
| required: true | ||
| type: string | ||
| target_commitish: | ||
| description: Branch or commit SHA used as target for note generation | ||
| required: true | ||
| type: string | ||
| outputs: | ||
| release_notes: | ||
| description: Generated release notes body | ||
| value: ${{ jobs.generate.outputs.release_notes }} | ||
|
|
||
|
Rider-Linden marked this conversation as resolved.
|
||
| permissions: | ||
| contents: read | ||
|
|
||
| jobs: | ||
| generate: | ||
| runs-on: ubuntu-latest | ||
| outputs: | ||
| release_notes: ${{ steps.generate.outputs.release_notes }} | ||
|
|
||
| steps: | ||
| - name: Generate release notes body | ||
| id: generate | ||
| uses: actions/github-script@v7 | ||
| env: | ||
| TAG_NAME: ${{ inputs.tag_name }} | ||
| TARGET_COMMITISH: ${{ inputs.target_commitish }} | ||
| with: | ||
| script: | | ||
| const { owner, repo } = context.repo; | ||
| const tag_name = process.env.TAG_NAME; | ||
| const target_commitish = process.env.TARGET_COMMITISH; | ||
|
|
||
| const response = await github.rest.repos.generateReleaseNotes({ | ||
| owner, | ||
| repo, | ||
| tag_name, | ||
| target_commitish, | ||
| }); | ||
|
|
||
| core.setOutput('release_notes', response.data.body || ''); | ||
This file contains hidden or 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.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.