Skip to content

Commit 98b0940

Browse files
authored
Create copilot-setup-steps.yml
1 parent 74f55fe commit 98b0940

1 file changed

Lines changed: 17 additions & 0 deletions

File tree

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: "Copilot Setup Steps"
2+
3+
on:
4+
workflow_dispatch:
5+
6+
jobs:
7+
copilot-setup-steps:
8+
runs-on: ubuntu-latest
9+
permissions:
10+
contents: read
11+
env:
12+
VALUE1: ${{ secrets.SECRET1 }}
13+
VALUE2: ${{ vars.VAR123 }}
14+
steps:
15+
- run: |
16+
echo ${VALUE1}
17+
echo ${VALUE2}

0 commit comments

Comments
 (0)