-
Notifications
You must be signed in to change notification settings - Fork 276
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 nexcalmart/nginx-unprivileged
- Loading branch information
Showing
1,283 changed files
with
38,957 additions
and
18,720 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
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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# This action will try to match git commit author (GITHUB_ACTOR) with Slack user | ||
# and add it to GITHUB_OUTPUT | ||
# Following env variables should be provided. | ||
# Provided by Github: | ||
# GITHUB_ACTOR: commit author | ||
# GITHUB_REPOSITORY: name of the repo we check the commit author, e.g. "airbytehq/airbyte-platform-internal" | ||
# Required: | ||
# AIRBYTE_HQ_BOT_SLACK_TOKEN: ${{ secrets.AIRBYTE_HQ_BOT_SLACK_TOKEN }} | ||
# AIRBYTE_TEAM_BOT_SLACK_TOKEN: ${{ secrets.AIRBYTE_TEAM_BOT_SLACK_TOKEN }} | ||
# GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
name: 'Match Github user to Slack user' | ||
description: 'Match Github user to Slack by email or full name in Github profile.' | ||
outputs: | ||
slack_user_ids: | ||
description: 'Comma separated slack user IDs that match to GITHUB_ACTOR (Github username)' | ||
value: ${{ steps.match-github-to-slack-user.outputs.slack_user_ids }} | ||
runs: | ||
using: 'composite' | ||
steps: | ||
- name: Match github user to slack user | ||
id: match-github-to-slack-user | ||
run: | | ||
./tools/bin/match_github_user_to_slack | ||
shell: bash |
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,23 @@ | ||
## What | ||
*Describe what the change is solving* | ||
*It helps to add screenshots if it affects the frontend.* | ||
<!-- | ||
* Describe what the change is solving. | ||
* It helps to add screenshots if it affects the frontend. | ||
--> | ||
|
||
## How | ||
*Describe the solution* | ||
<!-- | ||
* Describe how code changes achieve the solution. | ||
--> | ||
|
||
## Recommended reading order | ||
1. `x.java` | ||
2. `y.java` | ||
1. `x.kt` | ||
2. `y.kt` | ||
|
||
## Can this PR be safely reverted / rolled back? | ||
*If you know that your PR is backwards-compatible and can be simply reverted or rolled back, check the YES box.* | ||
|
||
*Otherwise if your PR has a breaking change, like a database migration for example, check the NO box.* | ||
|
||
*If unsure, leave it blank.* | ||
## Can this PR be safely reverted and rolled back? | ||
<!-- | ||
* If you know that your be safely rolled back, check YES.* | ||
* If that is not the case (e.g. a database migration), check NO. | ||
* If unsure, leave it blank.* | ||
--> | ||
- [ ] YES 💚 | ||
- [ ] NO ❌ | ||
|
||
## 🚨 User Impact 🚨 | ||
Are there any breaking changes? What is the end result perceived by the user? If yes, please merge this PR with the 🚨🚨 emoji so changelog authors can further highlight this if needed. |
Oops, something went wrong.