Skip to content

Commit

Permalink
foo
Browse files Browse the repository at this point in the history
  • Loading branch information
louis-bompart committed Oct 21, 2024
1 parent 45e156a commit 5647410
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/foo.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
on:
pull_request:

jobs:
foo:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Run git describe with branch refs
run: git describe --tags --abbrev=0 --match=@coveo/atomic@ --exact-match release/v3
continue-on-error: true
- name: Run git describe with local heads
run: git describe --tags --abbrev=0 --match=@coveo/atomic@ --exact-match refs/heads/release/v3
continue-on-error: true
- name: Run git describe with remote heads
run: git describe --tags --abbrev=0 --match=@coveo/atomic@ --exact-match refs/remotes/origin/release/v3
continue-on-error: true

0 comments on commit 5647410

Please sign in to comment.