This repository was archived by the owner on Oct 2, 2024. It is now read-only.
Add deprecation notice to GitHub Action#55
Merged
ChristineWanjau merged 7 commits intomainfrom Jul 29, 2024
Merged
Conversation
et13
approved these changes
Jul 19, 2024
zhenlan
reviewed
Jul 20, 2024
README.md
Outdated
| @@ -1,3 +1,7 @@ | |||
| # Deprecation Notice | |||
|
|
|||
| This Action is deprecated. Instead, you can set up ongoing configuration file import using [Azure CLI](https://learn.microsoft.com/en-us/azure/azure-app-configuration/push-kv-github-action) GitHub action, which offers full capabilities for file importing to your App Configuration store. | |||
Member
There was a problem hiding this comment.
Change the wording a little bit.
This GitHub action has been deprecated. The Azure CLI for Azure App Configuration provides full capabilities for importing configuration files into Azure App Configuration. Follow these instructions to set it up in your GitHub actions.
Contributor
Author
There was a problem hiding this comment.
This has been updated
zhenlan
reviewed
Jul 20, 2024
src/main.ts
Outdated
| } catch (error) { | ||
| core.setFailed(getErrorMessage(error)); | ||
| } | ||
| core.warning("THIS ACTION IS DEPRECATED. Use azure/cli@v2 to replace this action. Find it here: https://github.com/Azure/cli"); |
Member
There was a problem hiding this comment.
I'm wondering if we should move this to the beginning instead of at the end.
I think we should point users to our document instead of the CLI action.
THIS ACTION IS DEPRECATED. Follow this guide to import your configuration into Azure App Configuration using GitHub Actions: https://aka.ms/appconfig/githubactions
Contributor
Author
added 2 commits
July 22, 2024 10:26
zhenlan
approved these changes
Jul 28, 2024
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
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.

Added warning that action is deprecated.