diff options
author | Rob Mensching <rob@firegiant.com> | 2021-10-19 16:21:58 -0700 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2021-10-19 16:31:05 -0700 |
commit | 54ebab73cd3254c97ed1bc8e1abeed0b5d239177 (patch) | |
tree | a6012a08c8cec7ce4fc65eae039683fc87589e57 /.github/workflows/cla.yml | |
parent | 5c8752cf09d1b09a574146904f50cb90babffdf1 (diff) | |
download | wix-54ebab73cd3254c97ed1bc8e1abeed0b5d239177.tar.gz wix-54ebab73cd3254c97ed1bc8e1abeed0b5d239177.tar.bz2 wix-54ebab73cd3254c97ed1bc8e1abeed0b5d239177.zip |
Formatting fixes to YAML files
Diffstat (limited to '.github/workflows/cla.yml')
-rw-r--r-- | .github/workflows/cla.yml | 6 |
1 files changed, 3 insertions, 3 deletions
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 @@ | |||
1 | name: "CLA-Bot" | 1 | name: "CLA-Bot" |
2 | on: | 2 | on: |
3 | issue_comment: | 3 | issue_comment: |
4 | types: [created] | 4 | types: [ created ] |
5 | pull_request_target: | 5 | pull_request_target: |
6 | types: [ opened, closed, synchronize ] | 6 | types: [ opened, closed, synchronize ] |
7 | 7 | ||
8 | jobs: | 8 | jobs: |
9 | CLAssistant: | 9 | clabot: |
10 | runs-on: ubuntu-latest | 10 | runs-on: ubuntu-latest |
11 | steps: | 11 | steps: |
12 | - name: "CLA-Bot signature check" | 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' | ||
14 | uses: cla-assistant/github-action@v2.1.3-beta | 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: | 15 | env: |
16 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | 16 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
17 | PERSONAL_ACCESS_TOKEN : ${{ secrets.CLA_BOT_ACCESS_TOKEN }} | 17 | PERSONAL_ACCESS_TOKEN : ${{ secrets.CLA_BOT_ACCESS_TOKEN }} |