forked from apache/airflow
-
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 remote-tracking branch 'origin/main'
- Loading branch information
Showing
6,020 changed files
with
258,953 additions
and
209,547 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
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 |
---|---|---|
|
@@ -122,12 +122,18 @@ github: | |
# Max 10 collaborators allowed | ||
# https://github.com/apache/infrastructure-asfyaml/blob/main/README.md#assigning-the-github-triage-role-to-external-collaborators | ||
- aritra24 | ||
- dirrao | ||
- mhenc | ||
- omkar-foss | ||
- rawwar | ||
- nathadfield | ||
- sunank200 | ||
- vatsrahul1001 | ||
- cmarteepants | ||
- bugraoz93 | ||
- briana-okyere | ||
|
||
notifications: | ||
jobs: [email protected] | ||
commits: [email protected] | ||
issues: [email protected] | ||
pullrequests: [email protected] | ||
discussions: [email protected] |
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
Validating CODEOWNERS rules …
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 |
---|---|---|
|
@@ -99,10 +99,11 @@ do not apply to Airflow, or have a different severity than some generic scoring | |
|
||
The Airflow Security Team will get back to you after assessing the report. You will usually get | ||
confirmation that the issue is being worked (or that we quickly assessed it as invalid) within several | ||
business days. Note that this is an Open-Source projects and members of the security team are volunteers | ||
so please make sure to be patient. If you do not get a response within a week or so, please send a | ||
kind reminder to the security team. We will usually let you know the CVE number that will be assigned | ||
to the issue and the severity of the issue as well as release the issue is scheduled to be fixed | ||
business days. Note that this is an Open-Source projects and members of the security team are volunteers, | ||
so please make sure to be patient. If you do not get a response within a week, please send a kind reminder | ||
to the security team about a lack of response; however, reminders should only be for the initial response | ||
and not for updates on the assessment or remediation. We will usually let you know the CVE number that will | ||
be assigned to the issue and the severity of the issue as well as release the issue is scheduled to be fixed | ||
after we assess the issue (which might take longer or shorter time depending on the issue complexity and | ||
potential impact, severity, whether we want to address a whole class issues in a single fix and a number | ||
of other factors). You should subscribe and monitor the `[email protected]` mailing | ||
|
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,50 @@ | ||
# Licensed to the Apache Software Foundation (ASF) under one | ||
# or more contributor license agreements. See the NOTICE file | ||
# distributed with this work for additional information | ||
# regarding copyright ownership. The ASF licenses this file | ||
# to you under the Apache License, Version 2.0 (the | ||
# "License"); you may not use this file except in compliance | ||
# with the License. You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, | ||
# software distributed under the License is distributed on an | ||
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
# KIND, either express or implied. See the License for the | ||
# specific language governing permissions and limitations | ||
# under the License. | ||
# | ||
--- | ||
name: 'Install pre-commit' | ||
description: 'Installs pre-commit and related packages' | ||
inputs: | ||
python-version: | ||
description: 'Python version to use' | ||
default: 3.9 | ||
uv-version: | ||
description: 'uv version to use' | ||
default: 0.4.30 | ||
pre-commit-version: | ||
description: 'pre-commit version to use' | ||
default: 4.0.1 | ||
pre-commit-uv-version: | ||
description: 'pre-commit-uv version to use' | ||
default: 4.1.4 | ||
runs: | ||
using: "composite" | ||
steps: | ||
- name: Install pre-commit, uv, and pre-commit-uv | ||
shell: bash | ||
run: > | ||
pip install | ||
pre-commit==${{inputs.pre-commit-version}} | ||
uv==${{inputs.uv-version}} | ||
pre-commit-uv==${{inputs.pre-commit-uv-version}} | ||
- name: Cache pre-commit envs | ||
uses: actions/cache@v4 | ||
with: | ||
path: ~/.cache/pre-commit | ||
key: "pre-commit-${{inputs.python-version}}-${{ hashFiles('.pre-commit-config.yaml') }}" | ||
restore-keys: | | ||
pre-commit-${{inputs.python-version}}- |
Oops, something went wrong.