Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/dependabot-bot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,9 @@ jobs:
- name: "Print manual run reason"
if: ${{ github.event_name == 'workflow_dispatch' }}
run: |
echo "Reason: ${{ github.event.inputs.reason }}"
echo "Reason: $REASON"
env:
REASON: ${{ github.event.inputs.reason }}
# Run the .NET dependabot-bot tool
- name: dependabot-bot
id: dependabot-bot
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/quest-bulk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,9 @@ jobs:
- name: "Print manual bulk import run reason"
if: ${{ github.event_name == 'workflow_dispatch' }}
run: |
echo "Reason: ${{ github.event.inputs.reason }}"
echo "Reason: $REASON"
env:
REASON: ${{ github.event.inputs.reason }}

- name: Azure OpenID Connect
id: azure-oidc-auth
Expand Down
9 changes: 6 additions & 3 deletions .github/workflows/quest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,11 @@ jobs:
- name: "Print manual run reason"
if: ${{ github.event_name == 'workflow_dispatch' }}
run: |
echo "Reason: ${{ github.event.inputs.reason }}"
echo "Issue number: ${{ github.event.inputs.issue }}"
echo "Reason: $REASON"
echo "Issue number: $ISSUENUMBER"
env:
REASON: ${{ github.event.inputs.reason }}
ISSUENUMBER: ${{ github.event.inputs.issue }}

- name: Azure OpenID Connect
id: azure-oidc-auth
Expand Down Expand Up @@ -78,4 +81,4 @@ jobs:
org: ${{ github.repository_owner }}
repo: ${{ github.repository }}
issue: ${{ github.event.issue.number }}

60 changes: 0 additions & 60 deletions .github/workflows/whats-new-automation.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .openpublishing.redirection.json
Original file line number Diff line number Diff line change
Expand Up @@ -574,7 +574,7 @@
},
{
"source_path_from_root": "/docs/azure/customize-azure-resources.md",
"redirect_url": "https://aspire.dev/integrations/cloud/azure-customize/"
"redirect_url": "https://aspire.dev/integrations/cloud/azure/customize-resources/"
},
{
"source_path_from_root": "/docs/azure/local-provisioning.md",
Expand Down
Loading