Skip to content

Commit

Permalink
Merge pull request #565 from gitlabhq/fork-actions-pass
Browse files Browse the repository at this point in the history
Fix "Run failed" on forks
  • Loading branch information
armsnyder authored Mar 4, 2021
2 parents ae67bc8 + 6601879 commit 9884585
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/acceptance-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
acceptance-ee:
timeout-minutes: 60
runs-on: ubuntu-latest
if: ${{ github.event_name == 'push' }}
if: github.event_name == 'push' && github.repository_owner == 'gitlabhq'
steps:
- name: Set up Go
uses: actions/[email protected]
Expand All @@ -38,10 +38,7 @@ jobs:
- name: Set up Enterprise Edition License file
run: |
openssl version
mkdir license
[[ -n "${{ secrets.LICENSE_ENCRYPTION_PASSWORD }}" ]] && echo decrypt
[[ -n "${{ secrets.LICENSE_ENCRYPTION_PASSWORD }}" ]] && openssl enc -d -aes-256-cbc -pbkdf2 -iter 20000 -in Gitlab-license.encrypted -out Gitlab-license.txt -pass "pass:${{ secrets.LICENSE_ENCRYPTION_PASSWORD }}"
chmod 666 Gitlab-license.txt || true
openssl enc -d -aes-256-cbc -pbkdf2 -iter 20000 -in Gitlab-license.encrypted -out Gitlab-license.txt -pass "pass:${{ secrets.LICENSE_ENCRYPTION_PASSWORD }}"
- name: Start Gitlab
run: make testacc-up SERVICE=gitlab-ee
Expand Down

0 comments on commit 9884585

Please sign in to comment.