We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 30c7220 commit 285bb0fCopy full SHA for 285bb0f
.github/workflows/copilot-setup-steps.yml
@@ -0,0 +1,33 @@
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
11
12
13
+jobs:
14
+ # The job MUST be called `copilot-setup-steps` or it will not be picked up by Copilot.
15
+ copilot-setup-steps:
16
+ runs-on: ubuntu-latest
17
+ permissions:
18
+ contents: write
19
+ pull-requests: write
20
+ steps:
21
+ - name: Checkout
22
+ uses: actions/checkout@v6
23
24
+ - name: Login to Registry
25
+ uses: docker/login-action@v3
26
+ with:
27
+ registry: ghcr.io
28
+ username: ${{ github.repository_owner }}
29
+ password: ${{ github.token }}
30
31
+ - name: Workbench up
32
+ uses: ./
33
0 commit comments