From 54ebab73cd3254c97ed1bc8e1abeed0b5d239177 Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Tue, 19 Oct 2021 16:21:58 -0700 Subject: Formatting fixes to YAML files --- .github/workflows/build.yml | 8 +++++--- .github/workflows/cla.yml | 6 +++--- 2 files changed, 8 insertions(+), 6 deletions(-) (limited to '.github') diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0b632755..e8246f03 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -3,7 +3,8 @@ name: Build WiX Toolset v4 on: push: branches: - master + - master + - develop pull_request: branches: - master @@ -32,10 +33,11 @@ jobs: uses: microsoft/setup-msbuild@v1.0.3 - name: Build wix4 - run: build.cmd + shell: cmd + run: ./build.cmd - name: Save build - - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v2 with: name: artifacts path: build/artifacts/ diff --git a/.github/workflows/cla.yml b/.github/workflows/cla.yml index 818fdcf3..9d449e81 100644 --- a/.github/workflows/cla.yml +++ b/.github/workflows/cla.yml @@ -1,17 +1,17 @@ name: "CLA-Bot" on: issue_comment: - types: [created] + types: [ created ] pull_request_target: types: [ opened, closed, synchronize ] jobs: - CLAssistant: + clabot: runs-on: ubuntu-latest steps: - name: "CLA-Bot signature check" - 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' uses: cla-assistant/github-action@v2.1.3-beta + 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' env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} PERSONAL_ACCESS_TOKEN : ${{ secrets.CLA_BOT_ACCESS_TOKEN }} -- cgit v1.2.3-55-g6feb