Update azure-login-integration-tests.yml#588
Update azure-login-integration-tests.yml#588victorjoshi9 wants to merge 1 commit intoAzure:masterfrom
Conversation
|
@victorjoshi9 please read the following Contributor License Agreement(CLA). If you agree with the CLA, please reply with the following information.
Contributor License AgreementContribution License AgreementThis Contribution License Agreement (“Agreement”) is agreed to by the party signing below (“You”),
|
There was a problem hiding this comment.
Pull request overview
This PR modifies the azure-login-integration-tests.yml GitHub Actions workflow, replacing the previous scheduled/dispatch integration-test workflow (multiple login scenarios + Slack reporting) with a minimal snippet that only references the Azure Login action.
Changes:
- Removed the existing integration test workflow definition (triggers, permissions, jobs, and Slack reporting).
- Added only a single step entry that uses
Azure/login@v3.0.0.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| - name: Azure Login | ||
| uses: Azure/login@v3.0.0 |
There was a problem hiding this comment.
This file is no longer a valid GitHub Actions workflow: it contains only a single step entry (- name/uses) and is missing required top-level keys like name, on, and jobs. As-is, GitHub will not be able to load/run this workflow. Please restore the workflow structure (or move this snippet under a job’s steps:) and ensure the YAML defines at least one job.
| - name: Azure Login | |
| uses: Azure/login@v3.0.0 | |
| name: Azure Login Integration Tests | |
| on: | |
| workflow_dispatch: | |
| jobs: | |
| azure-login-integration-tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Azure Login | |
| uses: Azure/login@v3.0.0 |
No description provided.