forked from keephq/keep
-
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.
Merge branch 'main' into feat-2538-refactor-builder-actions
- Loading branch information
Showing
333 changed files
with
10,524 additions
and
8,313 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,14 @@ | ||
blank_issues_enabled: true | ||
|
||
contact_links: | ||
- name: Support | ||
url: https://github.com/keephq/keep/discussions | ||
about: Get help! Ask questions, get support, and share ideas. | ||
|
||
- name: Chat | ||
url: https://slack.keephq.dev | ||
about: Engage with the Keep team and other community members over Slack. | ||
|
||
- name: Twitter | ||
url: https://twitter.com/keepalerting | ||
about: Follow us and stay up to date with Keep. |
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,53 @@ | ||
name: Auto Release on Version Change | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
paths: | ||
- "pyproject.toml" | ||
|
||
jobs: | ||
check-and-release: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: write | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: "3.11" | ||
|
||
- name: Extract version from pyproject.toml | ||
id: get_version | ||
run: | | ||
VERSION=$(grep '^version = ' pyproject.toml | sed 's/version = "\(.*\)"/\1/') | ||
echo "version=$VERSION" >> $GITHUB_OUTPUT | ||
- name: Check if release exists | ||
id: check_release | ||
run: | | ||
TAG_EXISTS=$(git tag -l "v${{ steps.get_version.outputs.version }}") | ||
if [ -z "$TAG_EXISTS" ]; then | ||
echo "exists=false" >> $GITHUB_OUTPUT | ||
else | ||
echo "exists=true" >> $GITHUB_OUTPUT | ||
fi | ||
- name: Create Release | ||
if: steps.check_release.outputs.exists == 'false' | ||
uses: softprops/action-gh-release@v1 | ||
with: | ||
tag_name: v${{ steps.get_version.outputs.version }} | ||
name: Release v${{ steps.get_version.outputs.version }} | ||
generate_release_notes: true | ||
draft: false | ||
prerelease: false | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
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
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 |
---|---|---|
|
@@ -212,3 +212,4 @@ ee/experimental/ai_temp/* | |
oauth2.cfg | ||
scripts/keep_slack_bot.py | ||
keepnew.db | ||
providers_cache.json |
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
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
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
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
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
Oops, something went wrong.