This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
pull_request: | |
jobs: | |
foo: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
refs: 'master' | |
- 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 |