Skip to content
This repository has been archived by the owner on Oct 2, 2024. It is now read-only.

Commit

Permalink
Merge pull request #55 from Azure/cwanjau/addDeprecationNotice
Browse files Browse the repository at this point in the history
Add deprecation notice to GitHub Action
  • Loading branch information
ChristineWanjau authored Jul 29, 2024
2 parents 9767a4d + e2a883e commit f315c18
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# Deprecation Notice

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](https://aka.ms/appconfig/githubactions) to set it up in your GitHub actions.

# Azure App Configuration Sync

This action syncs configuration files in the repository to an App Configuration instance. This enables scenarios where the App Configuration instance is automatically updated when changes are made through GitHub workflows.
Expand Down
2 changes: 1 addition & 1 deletion lib/index.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ async function main(): Promise<void> {
} catch (error) {
core.setFailed(getErrorMessage(error));
}
core.warning("THIS ACTION IS DEPRECATED. Follow this guide to import your configuration into Azure App Configuration using GitHub Actions: https://aka.ms/appconfig/githubactions");
}

main();

0 comments on commit f315c18

Please sign in to comment.