-
Notifications
You must be signed in to change notification settings - Fork 650
feat: add support for creating deployments by project name #8611
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
Open
mieliespoor
wants to merge
12
commits into
apache:main
Choose a base branch
from
mieliespoor:main
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
f9b3b1a
feat: add support for creating deployments by project name and retrie…
mieliespoor 6fe7d4e
refactor: replace FirstByProjectName with findByProjectName for impro…
mieliespoor ad2ebc3
Merge branch 'apache:main' into main
mieliespoor 234df77
chore: add gitattributes to help windows developers
mieliespoor b79d3ac
fix(webhook): add project deployments endpoint for webhook plugin
mieliespoor 2aef41c
chore(build): add .gitattributes to paths-ignore in .licenserc.yaml
mieliespoor 30434c2
fix: create connection if not exist
mieliespoor 0ddce2c
fix: allow for null apiKeys
mieliespoor e13f552
feat: create webhook and blueprint connection if not exist
mieliespoor 463f094
refactor: create specific name for project deployment webhooks
mieliespoor 7a05719
chore: revert change to webhook routing
mieliespoor d816e12
chore: pass in webhook name
mieliespoor File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,34 @@ | ||
| # Ensure all text files use LF (Linux) line endings | ||
| * text=auto eol=lf | ||
|
|
||
| # Treat shell scripts as text and enforce LF | ||
| *.sh text eol=lf | ||
|
|
||
| # Treat Go files as text and enforce LF | ||
| *.go text eol=lf | ||
|
|
||
| # Treat Python files as text and enforce LF | ||
| *.py text eol=lf | ||
|
|
||
| # Treat JavaScript files as text and enforce LF | ||
| *.js text eol=lf | ||
|
|
||
| # Treat Markdown files as text and enforce LF | ||
| *.md text eol=lf | ||
|
|
||
| # Treat configuration files as text and enforce LF | ||
| *.yml text eol=lf | ||
| *.yaml text eol=lf | ||
| *.json text eol=lf | ||
|
|
||
| # Prevent CRLF normalization for binary files | ||
| *.png binary | ||
| *.jpg binary | ||
| *.jpeg binary | ||
| *.gif binary | ||
| *.pdf binary | ||
| *.zip binary | ||
| *.tar binary | ||
| *.gz binary | ||
| *.bz2 binary | ||
| *.xz binary |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
apiKey is optional for a webhook, so we won't always have an apiKey id.