Skip to content

Commit

Permalink
Remove check for repo owner
Browse files Browse the repository at this point in the history
  • Loading branch information
benjamin-robertson committed Jun 24, 2024
1 parent fa3407a commit 7fdbf9b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/acceptance_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ on:
pull_request:
branches:
- "main"
push:
branches:
- "*"

jobs:

Expand All @@ -17,17 +20,14 @@ jobs:
steps:
- name: Checkout Source
uses: actions/checkout@v3
if: ${{ github.repository_owner == 'benjamin-robertson' }}

- name: Activate Ruby 3.2
uses: ruby/setup-ruby@v1
if: ${{ github.repository_owner == 'benjamin-robertson' }}
with:
ruby-version: "3.2.3"
bundler-cache: true

- name: Print bundle environment
if: ${{ github.repository_owner == 'benjamin-robertson' }}
run: |
echo ::group::bundler environment
bundle env
Expand Down
3 changes: 0 additions & 3 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,17 +19,14 @@ jobs:
steps:
- name: Checkout Source
uses: actions/checkout@v3
if: ${{ github.repository_owner == 'benjamin-robertson' }}

- name: Activate Ruby 3.2
uses: ruby/setup-ruby@v1
if: ${{ github.repository_owner == 'benjamin-robertson' }}
with:
ruby-version: "3.2.3"
bundler-cache: true

- name: Print bundle environment
if: ${{ github.repository_owner == 'benjamin-robertson' }}
run: |
echo ::group::bundler environment
bundle env
Expand Down
3 changes: 0 additions & 3 deletions .github/workflows/unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,17 +19,14 @@ jobs:
steps:
- name: Checkout Source
uses: actions/checkout@v3
if: ${{ github.repository_owner == 'benjamin-robertson' }}

- name: Activate Ruby 3.2
uses: ruby/setup-ruby@v1
if: ${{ github.repository_owner == 'benjamin-robertson' }}
with:
ruby-version: "3.2.3"
bundler-cache: true

- name: Print bundle environment
if: ${{ github.repository_owner == 'benjamin-robertson' }}
run: |
echo ::group::bundler environment
bundle env
Expand Down

0 comments on commit 7fdbf9b

Please sign in to comment.