We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3dea23f commit 97205fbCopy full SHA for 97205fb
.github/workflows/main.yml
@@ -6,6 +6,9 @@ on:
6
- devel
7
- UE5.2
8
- UE5.3
9
+ - UE5.4
10
+ - UE5.4.4
11
+ - UE5.5
12
types: ["closed"]
13
14
workflow_dispatch:
@@ -25,12 +28,21 @@ jobs:
25
28
26
29
27
30
31
32
33
34
steps:
35
+ - name: Check token permissions
36
+ run: |
37
+ curl -H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" \
38
+ -H "Accept: application/vnd.github.v3+json" \
39
+ https://api.github.com/repos/${{ github.repository }}
40
- name: Checkout
41
uses: actions/checkout@v4
42
if: matrix.version != github.base_ref
43
with:
44
ref: ${{ matrix.version }}
45
+ token: ${{ secrets.GITHUB_TOKEN }}
46
- name: Debug
47
env:
48
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments