Skip to content

Commit

Permalink
Add format
Browse files Browse the repository at this point in the history
  • Loading branch information
danila-b committed Feb 22, 2025
1 parent f1fd5e0 commit 1d11324
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/extended.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
- uses: actions/checkout@v4
with:
# Check out the pull request branch if triggered by a comment
ref: ${{ github.event_name == 'issue_comment' && refs/pull/${{ github.event.issue.number }}/head || github.ref }}
ref: ${{ github.event_name == 'issue_comment' && format('refs/pull/{0}/head', github.event.issue.number) || github.ref }}
submodules: true
fetch-depth: 1
- name: Install Rust
Expand Down Expand Up @@ -100,7 +100,7 @@ jobs:
- uses: actions/checkout@v4
with:
# Check out the pull request branch if triggered by a comment
ref: ${{ github.event_name == 'issue_comment' && refs/pull/${{ github.event.issue.number }}/head || github.ref }}
ref: ${{ github.event_name == 'issue_comment' && format('refs/pull/{0}/head', github.event.issue.number) || github.ref }}
submodules: true
fetch-depth: 1
- name: Free Disk Space (Ubuntu)
Expand Down Expand Up @@ -138,7 +138,7 @@ jobs:
- uses: actions/checkout@v4
with:
# Check out the pull request branch if triggered by a comment
ref: ${{ github.event_name == 'issue_comment' && refs/pull/${{ github.event.issue.number }}/head || github.ref }}
ref: ${{ github.event_name == 'issue_comment' && format('refs/pull/{0}/head', github.event.issue.number) || github.ref }}
submodules: true
fetch-depth: 1
- name: Setup Rust toolchain
Expand All @@ -163,7 +163,7 @@ jobs:
- uses: actions/checkout@v4
with:
# Check out the pull request branch if triggered by a comment
ref: ${{ github.event_name == 'issue_comment' && refs/pull/${{ github.event.issue.number }}/head || github.ref }}
ref: ${{ github.event_name == 'issue_comment' && format('refs/pull/{0}/head', github.event.issue.number) || github.ref }}
submodules: true
fetch-depth: 1
- name: Setup Rust toolchain
Expand Down

0 comments on commit 1d11324

Please sign in to comment.