forked from cocogitto/cocogitto-action
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(check): properly fallback if no latest tag
- Loading branch information
1 parent
5ae1660
commit 2221510
Showing
2 changed files
with
130 additions
and
15 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 |
---|---|---|
@@ -1,22 +1,135 @@ | ||
name: CI | ||
|
||
on: push | ||
on: | ||
workflow_dispatch: {} | ||
push: {} | ||
|
||
jobs: | ||
test: | ||
check-all-success: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
path: cocogitto-action | ||
- name: Initialise repository | ||
run: | | ||
git init | ||
git config --global user.name 'Mona Lisa' | ||
git config --global user.email '[email protected]' | ||
echo 'cocogitto-action/' > .gitignore | ||
echo '# Mona Lisa' > README.md | ||
git add README.md .gitignore | ||
git commit -m 'chore: add Mona Lisa docs' | ||
- name: Run cocogitto-action | ||
id: cog1 | ||
uses: ./cocogitto-action | ||
continue-on-error: true | ||
with: | ||
check: true | ||
check-latest-tag-only: false | ||
release: false | ||
- name: Checks | ||
run: | | ||
[ "${{ steps.cog1.outcome }}" == 'success' ] || exit 1 | ||
check-all-failure: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
path: cocogitto-action | ||
- name: Initialise repository | ||
run: | | ||
git init | ||
git config --global user.name 'Mona Lisa' | ||
git config --global user.email '[email protected]' | ||
echo 'cocogitto-action/' > .gitignore | ||
echo '# Mona Lisa' > README.md | ||
git add README.md .gitignore | ||
git commit -m 'add Mona Lisa docs' | ||
- name: Run cocogitto-action | ||
id: cog1 | ||
uses: ./cocogitto-action | ||
continue-on-error: true | ||
with: | ||
check: true | ||
check-latest-tag-only: false | ||
release: false | ||
- name: Checks | ||
run: | | ||
[ "${{ steps.cog1.outcome }}" == 'failure' ] || exit 1 | ||
check-only-last-has-last: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
path: cocogitto-action | ||
- name: Initialise repository | ||
run: | | ||
git init | ||
echo "# Mona Lisa" > README.md | ||
git config --global user.name "Mona Lisa" | ||
git config --global user.email "[email protected]" | ||
git add README.md | ||
git commit -m "docs: add Mona Lisa docs" | ||
git config --global user.name 'Mona Lisa' | ||
git config --global user.email '[email protected]' | ||
echo 'cocogitto-action/' > .gitignore | ||
echo '# Mona Lisa' > README.md | ||
git add README.md .gitignore | ||
git commit -m 'add Mona Lisa docs' | ||
git tag '0.1.0' | ||
git commit --allow-empty -m 'feat: new cool feature' | ||
- name: Run cocogitto-action | ||
id: cog1 | ||
uses: ./cocogitto-action | ||
continue-on-error: true | ||
with: | ||
check: true | ||
check-latest-tag-only: true | ||
release: false | ||
- run: | | ||
git commit --allow-empty -m 'wrong commit format' | ||
- name: Run cocogitto-action | ||
id: cog2 | ||
uses: ./cocogitto-action | ||
continue-on-error: true | ||
with: | ||
check: true | ||
check-latest-tag-only: true | ||
release: false | ||
- name: Checks | ||
run: | | ||
[ "${{ steps.cog1.outcome }}" == 'success' ] || exit 1 | ||
[ "${{ steps.cog2.outcome }}" == 'failure' ] || exit 1 | ||
check-only-last-no-last: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
path: cocogitto-action | ||
- name: Initialise repository | ||
run: | | ||
git init | ||
git config --global user.name 'Mona Lisa' | ||
git config --global user.email '[email protected]' | ||
echo 'cocogitto-action/' > .gitignore | ||
echo '# Mona Lisa' > README.md | ||
git add README.md .gitignore | ||
git commit -m 'chore: add Mona Lisa docs' | ||
- name: Run cocogitto-action | ||
id: cog1 | ||
uses: ./cocogitto-action | ||
continue-on-error: true | ||
with: | ||
check: true | ||
check-latest-tag-only: true | ||
release: false | ||
# - run: | | ||
# git commit --allow-empty -m 'wrong commit format' | ||
# - name: Run cocogitto-action | ||
# id: cog2 | ||
# uses: ./cocogitto-action | ||
# continue-on-error: true | ||
# with: | ||
# check: true | ||
# check-latest-tag-only: true | ||
# release: false | ||
- name: Checks | ||
run: | | ||
[ "${{ steps.cog1.outcome }}" == 'success' ] || exit 1 | ||
# [ "${{ steps.cog2.outcome }}" == 'failure' ] || exit 1 |
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