This is an automated email from the ASF dual-hosted git repository.
sjaranowski pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-site-plugin.git
The following commit(s) were added to refs/heads/master by this push:
new 446de6b6 Fix GitHub CI configuration on new master
446de6b6 is described below
commit 446de6b6834408359a95e4fa73d3357e56dfdd5b
Author: Slawomir Jaranowski <[email protected]>
AuthorDate: Fri Apr 3 15:55:16 2026 +0200
Fix GitHub CI configuration on new master
---
.github/{dependabot.yml => ISSUE_TEMPLATE/BUG.yml} | 50 ++++++++++++++--------
.../{dependabot.yml => ISSUE_TEMPLATE/FEATURE.yml} | 31 +++++++-------
.../{dependabot.yml => ISSUE_TEMPLATE/config.yml} | 23 ++++------
.github/dependabot.yml | 6 ---
.github/pull_request_template.md | 32 ++++++--------
.github/{workflows => }/release-drafter.yml | 16 +------
.github/workflows/release-drafter.yml | 4 +-
.../workflows/{release-drafter.yml => stale.yml} | 21 ++++-----
8 files changed, 81 insertions(+), 102 deletions(-)
diff --git a/.github/dependabot.yml b/.github/ISSUE_TEMPLATE/BUG.yml
similarity index 54%
copy from .github/dependabot.yml
copy to .github/ISSUE_TEMPLATE/BUG.yml
index 43464693..699181ff 100644
--- a/.github/dependabot.yml
+++ b/.github/ISSUE_TEMPLATE/BUG.yml
@@ -14,21 +14,35 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
-version: 2
-updates:
-
- - package-ecosystem: "maven"
- directory: "/"
- schedule:
- interval: "daily"
-
- - package-ecosystem: "github-actions"
- directory: "/"
- schedule:
- interval: "daily"
-
- - package-ecosystem: "maven"
- directory: "/"
- schedule:
- interval: "daily"
- target-branch: "maven-site-plugin-3.x"
+
+#
https://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-githubs-form-schema
+
+name: Bug Report
+description: File a bug report
+labels: ["bug"]
+
+body:
+ - type: markdown
+ attributes:
+ value: |
+ Thanks for taking the time to fill out this bug report.
+
+ Simple fixes in single PRs do not require issues.
+
+ **Do you use the latest project version?**
+
+ - type: input
+ id: version
+ attributes:
+ label: Affected version
+ validations:
+ required: true
+
+ - type: textarea
+ id: message
+ attributes:
+ label: Bug description
+ validations:
+ required: true
+
+
diff --git a/.github/dependabot.yml b/.github/ISSUE_TEMPLATE/FEATURE.yml
similarity index 60%
copy from .github/dependabot.yml
copy to .github/ISSUE_TEMPLATE/FEATURE.yml
index 43464693..ddfd1a45 100644
--- a/.github/dependabot.yml
+++ b/.github/ISSUE_TEMPLATE/FEATURE.yml
@@ -14,21 +14,22 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
-version: 2
-updates:
- - package-ecosystem: "maven"
- directory: "/"
- schedule:
- interval: "daily"
+#
https://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-githubs-form-schema
- - package-ecosystem: "github-actions"
- directory: "/"
- schedule:
- interval: "daily"
+name: Feature request
+description: File a proposal for new feature, improvement
+labels: ["enhancement"]
- - package-ecosystem: "maven"
- directory: "/"
- schedule:
- interval: "daily"
- target-branch: "maven-site-plugin-3.x"
+body:
+ - type: markdown
+ attributes:
+ value: |
+ Thanks for taking the time to fill out this new feature, improvement
proposal.
+
+ - type: textarea
+ id: message
+ attributes:
+ label: New feature, improvement proposal
+ validations:
+ required: true
diff --git a/.github/dependabot.yml b/.github/ISSUE_TEMPLATE/config.yml
similarity index 68%
copy from .github/dependabot.yml
copy to .github/ISSUE_TEMPLATE/config.yml
index 43464693..ba0544b5 100644
--- a/.github/dependabot.yml
+++ b/.github/ISSUE_TEMPLATE/config.yml
@@ -14,21 +14,14 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
-version: 2
-updates:
- - package-ecosystem: "maven"
- directory: "/"
- schedule:
- interval: "daily"
+#
https://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/configuring-issue-templates-for-your-repository#configuring-the-template-chooser
- - package-ecosystem: "github-actions"
- directory: "/"
- schedule:
- interval: "daily"
+blank_issues_enabled: false
+
+contact_links:
+
+ - name: Project Mailing Lists
+ url: https://maven.apache.org/mailing-lists.html
+ about: Please ask a question or discuss here
- - package-ecosystem: "maven"
- directory: "/"
- schedule:
- interval: "daily"
- target-branch: "maven-site-plugin-3.x"
diff --git a/.github/dependabot.yml b/.github/dependabot.yml
index 43464693..64a264ea 100644
--- a/.github/dependabot.yml
+++ b/.github/dependabot.yml
@@ -26,9 +26,3 @@ updates:
directory: "/"
schedule:
interval: "daily"
-
- - package-ecosystem: "maven"
- directory: "/"
- schedule:
- interval: "daily"
- target-branch: "maven-site-plugin-3.x"
diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md
index 6981adf2..51e18bc1 100644
--- a/.github/pull_request_template.md
+++ b/.github/pull_request_template.md
@@ -1,29 +1,23 @@
-Following this checklist to help us incorporate your
+Following this checklist to help us incorporate your
contribution quickly and easily:
- - [ ] Make sure there is a [JIRA
issue](https://issues.apache.org/jira/browse/MSITE) filed
- for the change (usually before you start working on it). Trivial
changes like typos do not
- require a JIRA issue. Your pull request should address just this
issue, without
- pulling in other changes.
- - [ ] Each commit in the pull request should have a meaningful subject line
and body.
- - [ ] Format the pull request title like `[MSITE-XXX] - Fixes bug in
ApproximateQuantiles`,
- where you replace `MSITE-XXX` with the appropriate JIRA issue. Best
practice
- is to use the JIRA issue title in the pull request title and in the
first line of the
- commit message.
- - [ ] Write a pull request description that is detailed enough to understand
what the pull request does, how, and why.
- - [ ] Run `mvn clean verify` to make sure basic checks pass. A more thorough
check will
- be performed on your pull request automatically.
- - [ ] You have run the integration tests successfully (`mvn -Prun-its clean
verify`).
+- [ ] Your pull request should address just one issue, without pulling in
other changes.
+- [ ] Write a pull request description that is detailed enough to understand
what the pull request does, how, and why.
+- [ ] Each commit in the pull request should have a meaningful subject line
and body.
+ Note that commits might be squashed by a maintainer on merge.
+- [ ] Write unit tests that match behavioral changes, where the tests fail if
the changes to the runtime are not applied.
+ This may not always be possible but is a best-practice.
+- [ ] Run `mvn verify` to make sure basic checks pass.
+ A more thorough check will be performed on your pull request automatically.
+- [ ] You have run the integration tests successfully (`mvn -Prun-its verify`).
If your pull request is about ~20 lines of code you don't need to sign an
[Individual Contributor License
Agreement](https://www.apache.org/licenses/icla.pdf) if you are unsure
please ask on the developers list.
-To make clear that you license your contribution under
+To make clear that you license your contribution under
the [Apache License Version 2.0, January
2004](http://www.apache.org/licenses/LICENSE-2.0)
you have to acknowledge this by using the following check-box.
- - [ ] I hereby declare this contribution to be licenced under the [Apache
License Version 2.0, January 2004](http://www.apache.org/licenses/LICENSE-2.0)
-
- - [ ] In any other case, please file an [Apache Individual Contributor
License Agreement](https://www.apache.org/licenses/icla.pdf).
-
+- [ ] I hereby declare this contribution to be licenced under the [Apache
License Version 2.0, January 2004](http://www.apache.org/licenses/LICENSE-2.0)
+- [ ] In any other case, please file an [Apache Individual Contributor License
Agreement](https://www.apache.org/licenses/icla.pdf).
diff --git a/.github/workflows/release-drafter.yml b/.github/release-drafter.yml
similarity index 73%
copy from .github/workflows/release-drafter.yml
copy to .github/release-drafter.yml
index 1211a6dc..3713ebdb 100644
--- a/.github/workflows/release-drafter.yml
+++ b/.github/release-drafter.yml
@@ -1,5 +1,3 @@
-
-
# 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
@@ -16,16 +14,6 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
-
-name: Release Drafter
-on:
- push:
- branches:
- - maven-site-plugin-3.x
- workflow_dispatch:
-jobs:
- update_release_draft:
- uses:
apache/maven-gh-actions-shared/.github/workflows/release-drafter.yml@v4
- with:
- config-name: 'release-drafter-3.x.yml'
+_extends: maven-gh-actions-shared:/.github/release-drafter.yml
+tag-template: maven-site-plugin-$RESOLVED_VERSION
diff --git a/.github/workflows/release-drafter.yml
b/.github/workflows/release-drafter.yml
index 1211a6dc..00025e72 100644
--- a/.github/workflows/release-drafter.yml
+++ b/.github/workflows/release-drafter.yml
@@ -21,11 +21,9 @@ name: Release Drafter
on:
push:
branches:
- - maven-site-plugin-3.x
+ - master
workflow_dispatch:
jobs:
update_release_draft:
uses:
apache/maven-gh-actions-shared/.github/workflows/release-drafter.yml@v4
- with:
- config-name: 'release-drafter-3.x.yml'
diff --git a/.github/workflows/release-drafter.yml b/.github/workflows/stale.yml
similarity index 74%
copy from .github/workflows/release-drafter.yml
copy to .github/workflows/stale.yml
index 1211a6dc..b87a40f3 100644
--- a/.github/workflows/release-drafter.yml
+++ b/.github/workflows/stale.yml
@@ -1,5 +1,3 @@
-
-
# 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
@@ -16,16 +14,15 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
-
-name: Release Drafter
+
+name: Stale
+
on:
- push:
- branches:
- - maven-site-plugin-3.x
- workflow_dispatch:
+ schedule:
+ - cron: '12 5 * * *'
+ issue_comment:
+ types: [ 'created' ]
jobs:
- update_release_draft:
- uses:
apache/maven-gh-actions-shared/.github/workflows/release-drafter.yml@v4
- with:
- config-name: 'release-drafter-3.x.yml'
+ stale:
+ uses: apache/maven-gh-actions-shared/.github/workflows/stale.yml@v4