Skip to content

Commit fc4e5e4

Browse files
committed
Add action setup steps for copilot
Signed-off-by: Lance Albertson <lance@osuosl.org>
1 parent 8c50715 commit fc4e5e4

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
---
2+
name: "Copilot Setup Steps"
3+
4+
on:
5+
workflow_dispatch:
6+
push:
7+
paths:
8+
- .github/workflows/copilot-setup-steps.yml
9+
pull_request:
10+
paths:
11+
- .github/workflows/copilot-setup-steps.yml
12+
13+
jobs:
14+
copilot-setup-steps:
15+
runs-on: ubuntu-latest
16+
17+
permissions:
18+
contents: read
19+
20+
steps:
21+
- name: Check out code
22+
uses: actions/checkout@v5
23+
- name: Install Chef
24+
uses: actionshub/chef-install@main
25+
- name: Install cookbooks
26+
run: |
27+
berks install

0 commit comments

Comments
 (0)