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
13 changes: 13 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,19 @@
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
version: 2
updates:
- package-ecosystem: "maven" # See documentation for possible values
directory: "/" # Location of package manifests
schedule:
interval: "weekly"
# wait after a new release till we create a PR, to reduce risk of pulling
# a compromised new version
cooldown:
default-days: 7
# Exclude our own repos from cooldown
# https://docs.github.com/en/code-security/reference/supply-chain-security/dependabot-options-reference#cooldown-
exclude:
- "org.jboss.da:*"
- "org.jboss.pnc:*"
- package-ecosystem: "github-actions" # Also update Github actions
directory: "/"
schedule:
Expand Down
12 changes: 9 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
# shared-github-actions
Repository to store workflows (and other stuff) that we'll re-use in other PNC repositories
# Introduction

A sample `release.yml` configuration file from the [GitHub documentation](https://docs.github.com/en/repositories/releasing-projects-on-github/automatically-generated-release-notes#configuring-automatically-generated-release-notes) has been added to `.github/release.yml` - this can be copied to each relevant repository.
This repository is used to store GitHub Action workflows (and other stuff) that we'll re-use in other PNC repositories

### Dependabot

A sample dependabot file in `.github/dependabot.yml` is available that is both used in this repository and may be copied to other ProjectNCL repositories.

### GitHub Releases
A sample `.github/release.yml` configuration file from the [GitHub documentation](https://docs.github.com/en/repositories/releasing-projects-on-github/automatically-generated-release-notes#configuring-automatically-generated-release-notes) has been added that may be copied to other ProjectNCL repositories.