Skip to content

Commit

Permalink
Merge pull request #63 from GSA/feature/DIGITAL-000-update-dev-from-main
Browse files Browse the repository at this point in the history
Update dev from main post 0.3.0 release
  • Loading branch information
mattsqd authored Dec 4, 2024
2 parents 596b4d6 + 88b2f42 commit 54c53ed
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/validation-run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4

- name: Extract branch name
shell: bash
run: echo "branch=${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/}}" >> $GITHUB_OUTPUT
id: extract_branch

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
Expand Down Expand Up @@ -50,7 +55,7 @@ jobs:
status5=0
# Run all commands and capture their exit statuses
vendor/bin/robo validate:branch-name || status1=$? || status1=0
vendor/bin/robo validate:branch-name ${{ steps.extract_branch.outputs.branch }} || status1=$? || status1=0
vendor/bin/robo validate:composer-lock || status3=$? || status3=0
vendor/bin/robo validate:coding-standards || status2=$? || status2=0
set -x
Expand Down

0 comments on commit 54c53ed

Please sign in to comment.