-
Notifications
You must be signed in to change notification settings - Fork 470
Support shorthand forms for getRemoteConfig
#3973
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
mbg
wants to merge
23
commits into
main
Choose a base branch
from
mbg/repo-props/config-file-shorthands
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.
+856
−194
Open
Changes from all commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
c05a5b7
Add `ActionsEnvVars` enum
mbg 652296e
Allow abstracting over `process.env`
mbg 9c4ee01
Add `RemoteFileAddress` type
mbg 07b6b1e
Move `getRemoteConfig` to `config/file.ts`
mbg 9ef8be7
Refactor `parseRemoteFileAddress` out of `getRemoteConfig`
mbg 82e5ca6
Return `RemoteFileAddress` from `parseRemoteFileAddress`
mbg c7a94c9
Add `getRemoteConfig` JSDoc
mbg 85c8a8c
Add tests for `parseRemoteFileAddress`
mbg 598d008
Make `ref` optional in `parseRemoteFileAddress`
mbg e537ff2
Make `path` optional in `parseRemoteFileAddress`
mbg 12821cf
Make `owner` optional in `parseRemoteFileAddress`
mbg 81ad479
Fix test names
mbg 8102fa6
Anchor regex and trim input
mbg 00e5a58
Update format in error message
mbg 8d69da9
Improve whitespace handling
mbg 3fe7ef9
Fix `getEnv` not using `getOptionalEnvVarFrom`
mbg 812b882
Merge remote-tracking branch 'origin/main' into mbg/repo-props/config…
mbg f77cf55
Support old and new formats
mbg d8d1d6d
Add FF for shorthands
mbg e446d55
Add initial `ActionState` type
mbg f86aa52
Use `ActionState` for `getRemoteConfig`
mbg 7b2af89
Add `TestEnv` class to simplify testing of `ActionState`-dependent fu…
mbg b6be81d
Gate new remote file format behind FF
mbg 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
Large diffs are not rendered by default.
Oops, something went wrong.
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,14 @@ | ||
| import { Env } from "./environment"; | ||
| import { FeatureEnablement } from "./feature-flags"; | ||
| import { Logger } from "./logging"; | ||
|
|
||
| export interface ActionState { | ||
| /** The logger that is in use. */ | ||
| logger: Logger; | ||
|
|
||
| /** Information about environment variables. */ | ||
| env: Env; | ||
|
|
||
| /** Information about enabled feature flags. */ | ||
| features: FeatureEnablement; | ||
| } |
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
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.