Skip to content

Commit 56198ec

Browse files
committed
f
1 parent ed67310 commit 56198ec

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -186,8 +186,8 @@ You can use [this PR](https://github.com/antonbabenko/pre-commit-terraform/pull/
186186

187187
## Run tests in your fork
188188

189-
Go to you fork `Actions` tab and click on big green button
189+
Go to your fork's `Actions` tab and click the big green button.
190190

191191
![Enable workflows](/assets/contributing/enable_actions_in_fork.png)
192192

193-
Now you can see are the tests pass before submitting PR.
193+
Now you can verify that the tests pass before submitting your PR.

.github/workflows/ci-cd.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -87,9 +87,9 @@ jobs:
8787
# Prevent run 'push' events for the branches in upstream repository as it
8888
# already covered by 'pull_request' event
8989
if: >-
90-
!(github.event_name == 'push' &&
91-
github.repository == 'pre-commit/pre-commit-terraform' &&
92-
github.ref != 'refs/heads/master')
90+
github.event_name != 'push'
91+
OR github.repository != 'pre-commit/pre-commit-terraform'
92+
OR github.ref == 'refs/heads/master'
9393
9494
timeout-minutes: 1
9595

0 commit comments

Comments
 (0)