File tree Expand file tree Collapse file tree 1 file changed +42
-0
lines changed
Expand file tree Collapse file tree 1 file changed +42
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Offline
2+
3+ on :
4+ workflow_dispatch :
5+ inputs :
6+ azure_region :
7+ description : ' Azure region to deploy resources'
8+ required : true
9+ default : ' centralus'
10+ type : choice
11+ options :
12+ - centralus
13+ - eastus
14+ - eastus2
15+ - westus
16+ - westus2
17+ - westus3
18+ - northcentralus
19+ - southcentralus
20+ - canadacentral
21+ - canadaeast
22+ - uksouth
23+ - ukwest
24+ - northeurope
25+ - westeurope
26+ pull_request :
27+ branches :
28+ - ' *'
29+
30+ jobs :
31+ offline :
32+ runs-on : self-hosted
33+
34+ steps :
35+ - name : Checkout repository
36+ uses : actions/checkout@v4.1.1
37+
38+ - name : Placeholder step
39+ run : |
40+ echo "Offline workflow - ready for implementation"
41+ echo "Azure region: ${{ inputs.azure_region || 'centralus' }}"
42+
You can’t perform that action at this time.
0 commit comments