Skip to content

Commit

Permalink
Fixes two bugs with actions found:
Browse files Browse the repository at this point in the history
1. Duplicate actions run, now we only run against pull_request
2. Fixes path to CLA document
  • Loading branch information
AndrewGable committed Dec 14, 2020
1 parent 5e7fc25 commit c86a0dd
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 22 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cla.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
PERSONAL_ACCESS_TOKEN : ${{ secrets.BOTIFY_TOKEN }}
with:
path-to-signatures: '${{ github.repository }}/cla.json'
path-to-document: '${{ github.repository }}/blob/master/CLA.md'
path-to-cla-document: 'https://github.com/${{ github.repository }}/blob/master/CLA.md'
branch: 'master'
remote-organization-name: 'Expensify'
remote-repository-name: 'CLA'
8 changes: 1 addition & 7 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,7 @@
name: E2E iOS Tests

on:
push:
branches-ignore:
- 'master'
- 'version-bump-*'
tags-ignore:
- '*'
pull_request_target:
pull_request:
types: [opened, synchronize]

env:
Expand Down
8 changes: 1 addition & 7 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,7 @@
name: Lint JavaScript

on:
push:
branches-ignore:
- 'master'
- 'version-bump-*'
tags-ignore:
- '*'
pull_request_target:
pull_request:
types: [opened, synchronize]

jobs:
Expand Down
8 changes: 1 addition & 7 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,7 @@
name: Jest Unit Tests

on:
push:
branches-ignore:
- 'master'
- 'version-bump-*'
tags-ignore:
- '*'
pull_request_target:
pull_request:
types: [opened, synchronize]

jobs:
Expand Down

0 comments on commit c86a0dd

Please sign in to comment.