Formatting fixes to YAML files
Rob Mensching committed
Oct 19, 2021 at 16:21 UTC
54ebab73cd3254c97ed1bc8e1abeed0b5d239177
2 files changed
+8
-6
.github/workflows/build.yml
+5
-3
@@ -3,7 +3,8 @@ name: Build WiX Toolset v4
3
on:
4
push:
5
branches:
6
- master
6
+ - master
7
+ - develop
8
pull_request:
9
branches:
10
- master
@@ -32,10 +33,11 @@ jobs:
33
uses: microsoft/setup-msbuild@v1.0.3
34
35
- name: Build wix4
35
- run: build.cmd
36
+ shell: cmd
37
+ run: ./build.cmd
38
39
- name: Save build
38
- - uses: actions/upload-artifact@v2
40
+ uses: actions/upload-artifact@v2
41
with:
42
name: artifacts
43
path: build/artifacts/
.github/workflows/cla.yml
+3
-3
@@ -1,17 +1,17 @@
1
name: "CLA-Bot"
2
on:
3
issue_comment:
4
- types: [created]
4
+ types: [ created ]
5
pull_request_target:
6
types: [ opened, closed, synchronize ]
7
8
jobs:
9
- CLAssistant:
9
+ clabot:
10
runs-on: ubuntu-latest
11
steps:
12
- name: "CLA-Bot signature check"
13
- if: (github.event.comment.body == 'recheck' || github.event.comment.body == 'I have read the CLA Document and I hereby sign the CLA') || github.event_name == 'pull_request_target'
13
uses: cla-assistant/github-action@v2.1.3-beta
14
+ if: (github.event.comment.body == 'recheck' || github.event.comment.body == 'I have read the CLA Document and I hereby sign the CLA') || github.event_name == 'pull_request_target'
15
env:
16
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
17
PERSONAL_ACCESS_TOKEN : ${{ secrets.CLA_BOT_ACCESS_TOKEN }}