From eb4605ef67c7af6e77d597f266d5f11dda06e02d Mon Sep 17 00:00:00 2001 From: schmidtw <698825+schmidtw@users.noreply.github.com> Date: Tue, 21 Jul 2026 08:13:20 +0000 Subject: [PATCH] [create-pull-request] automated change --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index 845489b..3a74c01 100644 --- a/README.md +++ b/README.md @@ -143,8 +143,14 @@ name: 'Automatically relase patch versions.' | 3 | | string | minor-list | feat, Feat, FEAT, feature, Feature, FEATURE | The specific minor prefix names to use for minors. | | 4 | | string | tag-filter | ^.+$ | A string to filter tags by. By default allows all tags. This is
useful if you want to only consider tags that match a certain pattern
for the next version calculation.

Primarily this is used to ignore older tags in the shared-go repo that
are used for testing the release process.

This is mapped directly into the ietf-tools/semver-action 'tagFilter' input. | | 5 | | string | which | tag | Create a 'release' or 'tag'. | +| 6 | | string | release-ignore-paths | .github/**
**/*.md
LICENSE
LICENSES/**
.reuse/**
.gitignore
.gitattributes
| Newline-separated list of glob patterns. If every file changed since
the last matched tag falls within these patterns, the auto-release
is skipped — preventing patch bumps from chore(deps) or docs/CI
commits that didn't touch shippable code. Pass an empty string to
disable the check. | +### Secrets + +| # | Required | Name | Description | +| :--- | :---: | :--- | :--- | +| 1 | | PERSONAL_ACCESS_TOKEN | A GitHub Personal Access Token with repo permissions, used to create
the release tag. Optional. Provide it when additional workflows need
to be triggered by tag creation (e.g. CI workflows that run on release
tags) — tags pushed with the default GITHUB_TOKEN do not trigger other
workflows. When omitted, tagging falls back to GITHUB_TOKEN. | ## 2: CI Workflow ## Golang CI Workflow Sample @@ -232,6 +238,7 @@ jobs: + ## Workflow Development There are three special directories: