Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: remove kodiak #15

Merged
merged 2 commits into from
Apr 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 0 additions & 9 deletions .github/.kodiak.toml

This file was deleted.

6 changes: 3 additions & 3 deletions .github/actions/release/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,15 +47,15 @@ runs:
- name: '🏷️ Configure Git'
shell: bash
run: |
git config --global user.name 'Giantnodes Bot'
git config --global user.name 'giantnodes-bot'
git config --global user.email 'bot@giantnodes.com'

- name: '🏷️ Tag, Commit & Release'
shell: bash
id: branch
run: |
git checkout -b release/${{ steps.version.outputs.version }}
git commit -anm 'chore(release): ${{ steps.version.outputs.version }}'
git commit -anm 'chore(release): v${{ steps.version.outputs.version }}'
git push origin release/${{ steps.version.outputs.version }}

gh release create v${{ steps.version.outputs.version }} ${{ steps.version.outputs.tag == 'latest' && '--latest' || '--prerelease' }} --generate-notes
Expand All @@ -67,7 +67,7 @@ runs:
- name: '🏷️ Open Pull Request'
uses: thomaseizinger/create-pull-request@master
with:
title: 'chore(release): ${{ steps.version.outputs.version }}'
title: 'chore(release): v${{ steps.version.outputs.version }}'
labels: '🏷️ Release, 🥳️ LGTM'
github_token: ${{ inputs.GITHUB_TOKEN }}
head: release/${{ steps.version.outputs.version }}
Expand Down