-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e0ff16a
commit 2b30480
Showing
1 changed file
with
21 additions
and
0 deletions.
There are no files selected for viewing
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
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 |