- Notifications
You must be signed in to change notification settings - Fork359
-
I'd like to use this for all my laravel packages, and have the same config for each package. Is there a way to centralize the configuration? I know I can call actions from a repo, but how do I tell release-drafter to use a configuration file that's in a centralized repo? |
BetaWas this translation helpful?Give feedback.
All reactions
The default behavior without creating a config file in the repository is to read it from the user/organization's.github repository.
See this examplehttps://github.com/jenkinsci/.github/blob/master/.github/release-drafter.yml
Note here there are no confighttps://github.com/jenkinsci/gitlab-branch-source-plugin/tree/master/.github but if you check the workflows folder it uses release drafter
You can also explicitly use_extends which supports pointing to another config within the same repository or another repository entirely.
Replies: 2 comments 2 replies
-
I guess I could put all the configuration in the action? But the config is still needed to "trigger" this action, right? |
BetaWas this translation helpful?Give feedback.
All reactions
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
-
The default behavior without creating a config file in the repository is to read it from the user/organization's See this examplehttps://github.com/jenkinsci/.github/blob/master/.github/release-drafter.yml You can also explicitly use |
BetaWas this translation helpful?Give feedback.
All reactions
-
Note this doesn't work in enterprise github when your |
BetaWas this translation helpful?Give feedback.
All reactions
-
I believe GitHub documents the At least according to this doc:https://docs.github.com/en/communities/setting-up-your-project-for-healthy-contributions/creating-a-default-community-health-file But ya if you want a private/internal repo you need to use a different PAT or github app to authorize. |
BetaWas this translation helpful?Give feedback.