Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1 +1 @@
* @jonesbusy
* @andreaTP
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/bug-report.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright The ORAS Authors.
# Copyright The ORAS Authors and roastedroot contributors.
# Licensed 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
Expand All @@ -11,7 +11,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

name: 🐛 Bug report
name: Bug report
description: File a bug report
labels: ["bug"]
body:
Expand Down
9 changes: 4 additions & 5 deletions .github/ISSUE_TEMPLATE/feature-request.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright The ORAS Authors.
# Copyright The ORAS Authors and roastedroot contributors.
# Licensed 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
Expand All @@ -18,7 +18,7 @@ body:
- type: markdown
id: preface
attributes:
value: "Thank you for submitting new features for ORAS."
value: "Thank you for submitting new features for the ORAS Java SDK."
- type: textarea
id: description
attributes:
Expand All @@ -28,15 +28,14 @@ body:
- type: textarea
id: solution
attributes:
label: "Why is this needed for ORAS?"
label: "Why is this needed?"
description: "Please describe your user story or scenario."
validations:
required: true
- type: checkboxes
id: idea
attributes:
label: "Are you willing to submit PRs to contribute to this feature?"
description: "This is absolutely not required, but we are happy to guide you in the contribution process
especially when you already have a good proposal or understanding of how to implement it. Join us at https://slack.cncf.io/ and choose #oras channel."
description: "This is absolutely not required, but we are happy to guide you in the contribution process."
options:
- label: Yes, I am willing to implement it.
2 changes: 1 addition & 1 deletion .github/pull_request_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,5 @@
-->

### Submitter checklist
- [ ] I have read and understood the [CONTRIBUTING](https://github.com/oras-project/oras-java/blob/main/CONTRIBUTING.md) guide
- [ ] I have read and understood the [CONTRIBUTING](https://github.com/roastedroot/oras-java/blob/main/CONTRIBUTING.md) guide
- [ ] I have run `mvn license:update-file-header`, `mvn spotless:apply`, `pre-commit run -a`, `mvn clean install` before opening the PR
53 changes: 0 additions & 53 deletions .github/release-drafter.yml

This file was deleted.

46 changes: 2 additions & 44 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,7 @@ name: PR build
on:
workflow_dispatch:
pull_request:
branches: [main, release/0.2.x]
push:
branches:
- release/0.2.x
branches: [main]

permissions:
contents: read
Expand Down Expand Up @@ -35,7 +32,7 @@ jobs:
needs: build
strategy:
matrix:
java: [17, 21, 25]
java: [11, 17, 21, 25]
steps:
- name: Checkout
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
Expand All @@ -59,42 +56,3 @@ jobs:

- name: Maven build
run: mvn --batch-mode --update-snapshots verify

- name: Upload coverage reports to Codecov
if: matrix.java == '17'
uses: codecov/codecov-action@fb8b3582c8e4def4969c97caa2f19720cb33a72f # v7.0.0
with:
report_type: coverage
token: ${{ secrets.CODECOV_TOKEN }}
verbose: true

- name: Upload test reports to Codecov
if: matrix.java == '17'
uses: codecov/codecov-action@fb8b3582c8e4def4969c97caa2f19720cb33a72f # v7.0.0
with:
report_type: test_results
token: ${{ secrets.CODECOV_TOKEN }}
verbose: true

maven-build-windows:
runs-on: windows-latest
needs: build
steps:
- name: Checkout
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1

- name: Read Maven version
id: maven-version
run: echo "version=$(cat .github/vars/maven-version.txt)" >> $env:GITHUB_OUTPUT

- name: Setup Maven Action
uses: s4u/setup-maven-action@ba34de01b7f4ba2ab8e2860df8993a29f4477056 # v1.20.0
with:
checkout-enabled: false
java-distribution: 'temurin'
java-version: 17
maven-version: ${{ steps.maven-version.outputs.version }}
cache-enabled: true

- name: Maven build
run: mvn --batch-mode --update-snapshots verify
2 changes: 1 addition & 1 deletion .github/workflows/deploy-javadoc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
with:
checkout-enabled: false
java-distribution: 'temurin'
java-version: 17
java-version: 11
maven-version: ${{ steps.maven-version.outputs.version }}
cache-enabled: true

Expand Down
68 changes: 0 additions & 68 deletions .github/workflows/deploy-snapshots.yml

This file was deleted.

21 changes: 0 additions & 21 deletions .github/workflows/release-drafter.yml

This file was deleted.

Loading
Loading