Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
fabien-marty committed Aug 23, 2024
1 parent e0ff16a commit 2b30480
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/foo.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: foo

on:
push:
pull_request:

jobs:
main_ci:
runs-on: ubuntu-22.04
steps:
- name: Check out repository code
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 0 # we need this because fetch-tags=true and because of a GHA bug: https://github.com/actions/checkout/issues/1471
fetch-tags: true # important for the "scripts/version.sh" to get the "good" version
- name: foo
uses: fabien-marty/github-next-semantic-version@some-various-improvements
with:
github-token: ${{ github.token }}
log-level: DEBUG

0 comments on commit 2b30480

Please sign in to comment.