Skip to content

Commit

Permalink
Merge pull request #260 from hydephp/fix-wrong-workflow-path
Browse files Browse the repository at this point in the history
Fix setup configuration workflow
  • Loading branch information
caendesilva authored Jun 19, 2024
2 parents 67be183 + 9a49558 commit bda89ba
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ jobs:
first-time-setup:
runs-on: ubuntu-latest

# Ensure is is only run once, when the repository is generated
if: github.run_number == 1
# Ensure is is only run once, when the repository is generated, with a check to ensure it's the master branch
if: github.run_number == 1 && github.ref == 'refs/heads/master'

steps:
- name: Checkout code
Expand Down

0 comments on commit bda89ba

Please sign in to comment.