Skip to content

Commit

Permalink
ci: Fix checkout ref (#494)
Browse files Browse the repository at this point in the history
  • Loading branch information
witwash authored Dec 18, 2023
1 parent ac91ee4 commit 3fc56e3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/dependabot-follow-up.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ on:
types: [opened, synchronize, reopened]

jobs:
run_if:
dependabot_folow_up:
if: startsWith(github.head_ref, 'dependabot/')
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.ref }}
ref: ${{ github.head_ref }}

- name: Set up Flutter
uses: ./.github/actions/setup
Expand All @@ -32,4 +32,4 @@ jobs:
git add \*.lock
git commit -m "Update .lock files"
git push origin ${{ github.ref_name }}
git push origin ${{ github.head_ref }}

0 comments on commit 3fc56e3

Please sign in to comment.