forked from apache/netbeans
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'cnd' into cnd-cpplite-blend
- Loading branch information
Showing
13,524 changed files
with
661,753 additions
and
222,212 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 |
---|---|---|
|
@@ -14,6 +14,8 @@ | |
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
# doc: https://cwiki.apache.org/confluence/display/INFRA/Git+-+.asf.yaml+features | ||
|
||
github: | ||
description: "Apache NetBeans" | ||
homepage: https://netbeans.apache.org/ | ||
|
@@ -28,9 +30,15 @@ github: | |
issues: true | ||
projects: true | ||
enabled_merge_buttons: | ||
squash: true | ||
squash: false | ||
merge: true | ||
rebase: true | ||
protected_branches: | ||
# no force push to master | ||
master: {} | ||
collaborators: | ||
- asbachb | ||
|
||
notifications: | ||
commits: [email protected] | ||
issues: [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
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
Submodule delete-artifact
updated
17 files
+12 −0 | .editorconfig | |
+63 −0 | .github/workflows/ci.yml | |
+0 −27 | .github/workflows/example.yml | |
+1 −1 | .gitignore | |
+36 −26 | README.md | |
+6 −2 | action.yml | |
+4,935 −1,421 | dist/index.js | |
+199 −22 | package-lock.json | |
+30 −23 | package.json | |
+55 −0 | src/artifact-filter.ts | |
+0 −66 | src/index.js | |
+41 −0 | src/index.ts | |
+116 −0 | src/runtime-http-client.ts | |
+0 −83 | src/runtimeHttpClient.js | |
+20 −0 | src/typings/github-artifacts.d.ts | |
+36 −0 | src/utils.ts | |
+14 −0 | tsconfig.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,116 @@ | ||
# 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 | ||
|
||
# doc: https://docs.github.com/en/repositories/releasing-projects-on-github/automatically-generated-release-notes#configuration-options | ||
changelog: | ||
|
||
exclude: | ||
|
||
labels: | ||
- 'Release process' | ||
- 'ci:no-build' | ||
|
||
# order matters since this works like a filter, a PR will show up only once. | ||
# try to keep similar categories together since this is also the rendering order. | ||
categories: | ||
|
||
- title: 'Gradle' | ||
labels: | ||
- 'Gradle' | ||
|
||
- title: 'Maven' | ||
labels: | ||
- 'Maven' | ||
|
||
- title: 'Ant' | ||
labels: | ||
- 'Ant' | ||
|
||
- title: 'Java' | ||
labels: | ||
- 'Java' | ||
- 'JavaDoc' | ||
|
||
- title: 'JavaFX' | ||
labels: | ||
- 'JavaFX' | ||
|
||
- title: 'Groovy' | ||
labels: | ||
- 'Groovy' | ||
|
||
- title: 'PHP' | ||
labels: | ||
- 'PHP' | ||
|
||
- title: 'C/C++' | ||
labels: | ||
- 'C/C++' | ||
|
||
- title: 'Enterprise' | ||
labels: | ||
- 'enterprise' | ||
- 'Java EE/Jakarta EE' | ||
- 'Micronaut' | ||
- 'Payara' | ||
|
||
- title: 'Web' | ||
labels: | ||
- 'JavaScript' | ||
- 'TypeScript' | ||
- 'HTML' | ||
- 'CSS' | ||
- 'CSL' | ||
|
||
- title: 'Versioning' | ||
labels: | ||
- 'git' | ||
- 'subversion' | ||
- 'mercurial' | ||
|
||
- title: 'Editor' | ||
labels: | ||
- 'Editor' | ||
- 'ANTLR' | ||
- 'Docker' | ||
|
||
- title: 'UI Changes' | ||
labels: | ||
- 'UI' | ||
- 'Look and Feel' | ||
|
||
- title: 'Platform' | ||
labels: | ||
- 'Platform' | ||
|
||
- title: 'Language Server Protocol' | ||
labels: | ||
- 'LSP' | ||
|
||
- title: 'VSCode Extension' | ||
labels: | ||
- 'VSCode Extension' | ||
|
||
- title: 'Maintanance' | ||
labels: | ||
- 'Code cleanup' | ||
- 'Upgrade Library' | ||
- 'dependencies' | ||
- 'CI' | ||
|
||
- title: Other Changes | ||
labels: | ||
- "*" |
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,29 @@ | ||
#!/bin/bash | ||
|
||
# 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. | ||
|
||
TEST=$(getopt -q -a "f:" $@ | cut -d ' ' -f3) | ||
{ | ||
$@ | ||
} || { | ||
echo "::warning::$TEST failed: starting retry 1" | ||
$@ | ||
} || { | ||
echo "::warning::$TEST failed: starting retry 2" | ||
$@ | ||
} |
Oops, something went wrong.