-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'oss/main' into parsed-log-path
- Loading branch information
Showing
4 changed files
with
53 additions
and
6 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,26 @@ | ||
name: Auto assign the issue via `take` comment | ||
|
||
on: | ||
issue_comment: | ||
types: [created] | ||
|
||
permissions: | ||
issues: write | ||
|
||
jobs: | ||
auto-assign: | ||
runs-on: ubuntu-latest | ||
if: (!github.event.issue.pull_request) && github.event.comment.body == 'take' | ||
concurrency: | ||
# Only run one at a time for each user. | ||
group: ${{ github.actor }}-issue-assign | ||
steps: | ||
- run: | | ||
CODE=$(curl -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" -LI https://api.github.com/repos/${{ github.repository }}/issues/${{ github.event.issue.number }}/assignees/${{ github.event.comment.user.login }} -o /dev/null -w '%{http_code}\n' -s) | ||
if [ "$CODE" -eq "204" ] | ||
then | ||
echo "Assigning issue ${{ github.event.issue.number }} to ${{ github.event.comment.user.login }}" | ||
curl -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" -d '{"assignees": ["${{ github.event.comment.user.login }}"]}' https://api.github.com/repos/${{ github.repository }}/issues/${{ github.event.issue.number }}/assignees | ||
else | ||
echo "Cannot assign issue ${{ github.event.issue.number }} to ${{ github.event.comment.user.login }}" | ||
fi |
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,25 @@ | ||
# How to contribute to Delta Kernel Rust | ||
|
||
Welcome! We'd love to have you contribute to Delta Kernel Rust! | ||
|
||
## Did you find a bug? | ||
|
||
Create an issue with a reproducible example. Please specify the Rust version, delta-kernel-rs version, the code executed, and the error message. | ||
|
||
## Did you create a PR to fix a bug? | ||
|
||
Open a pull request and add "Fixes #issue_number" in the PR description. | ||
|
||
We appreciate bug fixes - thank you in advance! | ||
|
||
## Would you like to add a new feature or change existing code? | ||
|
||
If you would like to add a feature or change existing behavior, please make sure to create an issue and get the planned work approved by the core team first! | ||
|
||
Always better to get aligned with the core devs before writing any code. | ||
|
||
## Do you have questions about the source code? | ||
|
||
Feel free to create an issue or join the [Delta Lake Slack](https://go.delta.io/slack) with questions! We chat in the `#delta-kernel` channel. | ||
|
||
Thanks for reading! :heart: :crab: |
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