1 parent 4544f62 commit b6dd825Copy full SHA for b6dd825
1 file changed
.github/workflows/copilot-setup-steps.yml
@@ -0,0 +1,32 @@
1
+name: "Copilot Setup Steps"
2
+
3
+on:
4
+ workflow_dispatch:
5
+ push:
6
+ paths:
7
+ - .github/workflows/copilot-setup-steps.yml
8
+ pull_request:
9
10
11
12
+jobs:
13
+ # The job MUST be called `copilot-setup-steps` or it will not be picked up by Copilot.
14
+ copilot-setup-steps:
15
+ runs-on: ubuntu-latest
16
17
+ permissions:
18
+ contents: read
19
20
+ steps:
21
+ - uses: actions/checkout@v4
22
23
+ - name: Set up JDK 17
24
+ uses: actions/setup-java@v4
25
+ with:
26
+ java-version: '17'
27
+ distribution: 'temurin'
28
+ cache: 'gradle'
29
30
+ - name: Grant execute permission for gradlew
31
+ run: chmod +x gradlew
32
0 commit comments