-
Notifications
You must be signed in to change notification settings - Fork 26
Add optional base_url input to support GitHub Enterprise Octokit endpoints
#176
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
Open
Copilot
wants to merge
9
commits into
main
Choose a base branch
from
copilot/add-baseurl-configuration-option
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+19
−0
Open
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
e9a0ae7
Initial plan
Copilot 285e444
feat: add optional base_url input for Octokit enterprise support
Copilot 9a3d20d
Apply suggestion from @JoyceZhu
JoyceZhu 1f1f714
Apply suggestion from @JoyceZhu
JoyceZhu 7cecc75
Apply suggestion from @JoyceZhu
JoyceZhu 0142e69
Apply suggestion from @JoyceZhu
JoyceZhu 1f1a6b0
Delete super-verbose tests which aren't useful
JoyceZhu 552478e
Feedback from Lindsey: rearrange optional inputs
JoyceZhu ffdf8ea
Remove redundant type default
JoyceZhu 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
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
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 | ||||
|---|---|---|---|---|---|---|
|
|
@@ -12,6 +12,9 @@ inputs: | |||||
| token: | ||||||
| description: "Personal access token (PAT) with fine-grained permissions 'contents: write', 'issues: write', and 'pull_requests: write'" | ||||||
| required: true | ||||||
| base_url: | ||||||
| description: "Optional base URL for the GitHub API (for example, 'https://HOSTNAME/api/v3' for GitHub Enterprise Server)" | ||||||
|
Contributor
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.
Suggested change
|
||||||
| required: false | ||||||
JoyceZhu marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||
| cache_key: | ||||||
| description: 'Key for caching results across runs' | ||||||
| required: true | ||||||
|
|
@@ -113,6 +116,7 @@ runs: | |||||
| findings: ${{ steps.find.outputs.findings }} | ||||||
| repository: ${{ inputs.repository }} | ||||||
| token: ${{ inputs.token }} | ||||||
| base_url: ${{ inputs.base_url }} | ||||||
| cached_filings: ${{ steps.normalize_cache.outputs.value }} | ||||||
| screenshot_repository: ${{ github.repository }} | ||||||
| open_grouped_issues: ${{ inputs.open_grouped_issues }} | ||||||
|
|
@@ -132,6 +136,7 @@ runs: | |||||
| issues: ${{ steps.get_issues_from_filings.outputs.issues }} | ||||||
| repository: ${{ inputs.repository }} | ||||||
| token: ${{ inputs.token }} | ||||||
| base_url: ${{ inputs.base_url }} | ||||||
| - name: Set results output | ||||||
| id: results | ||||||
| uses: actions/github-script@v8 | ||||||
|
|
||||||
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.
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.
Do we need the key here, even just to be consistent? (I am also overthinking the quotes oops)
Uh oh!
There was an error while loading. Please reload this page.
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.
I might be misunderstanding the question; are you asking 'should we always include the key 'baseUrl' even if a value is not provided for it via inputs'?
assuming that's your question (and assuming you dont already know the following 😅 - you can ignore me if you already know); assigning
baseUrlto the options object thatOctokitWithThrottlingaccepts will automatically assign both key and value to that object (even if the value is undefined).so line 24 looks right to me (unless you were referring to something else that I'm not seeing)
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.
^agreed with Abdul -- we get a neat little shorthand/syntactic sugar if the key and value share a name (it's an ES6 thing)