Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

contrib/docs: rename 'cilium-actions.yml' with 'maintainers-little-helper.yaml #16750

Merged
merged 1 commit into from
Jul 2, 2021
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 4 additions & 4 deletions Documentation/contributing/release/feature.rst
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ On Freeze date
#. Create a new project named "X.Y.Z" to automatically track the backports
for that particular release. `Direct Link: <https://github.com/cilium/cilium/projects/new>`_

#. Copy the ``.github/cilium-actions.yml`` from the previous release ``vX.Y-1``
#. Copy the ``.github/maintainers-little-helper.yaml`` from the previous release ``vX.Y-1``
change the contents to be relevant for the release ``vX.Y`` and set the
``project:`` to be the generated link created by the previous step. The link
should be something like: ``https://github.com/cilium/cilium/projects/NNN``
Expand Down Expand Up @@ -76,7 +76,7 @@ On Freeze date
#. ``needs-backport/1.2``


#. Checkout to master and update the ``.github/cilium-actions.yml`` to have
#. Checkout to master and update the ``.github/maintainers-little-helper.yaml`` to have
all the necessary configurations for the backport of the new ``vX.Y`` branch.
Specifically, ensure that:

Expand All @@ -87,8 +87,8 @@ On Freeze date
.. code-block:: shell-session

$ git checkout -b pr/master-cilium-actions-update origin/master
$ # modify .github/cilium-actions.yml
$ git add .github/cilium-actions.yml
$ # modify .github/maintainers-little-helper.yaml
$ git add .github/maintainers-little-helper.yaml
$ git commit
$ git push

Expand Down
2 changes: 1 addition & 1 deletion contrib/release/bump-readme.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ MAJ_REGEX='[0-9]\+\.[0-9]\+'
MIN_REGEX='[0-9]\+\.[0-9]\+\.[0-9]\+'
REGEX_FILTER_DATE='s/^\([-0-9]\+\).*/\1/'
PROJECTS_REGEX='s/.*projects\/\([0-9]\+\).*/\1/'
ACTS_YAML=".github/cilium-actions.yml"
ACTS_YAML=".github/maintainers-little-helper.yaml"
REMOTE="$(get_remote)"

latest_stable=""
Expand Down
2 changes: 1 addition & 1 deletion contrib/release/start-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ source $DIR/lib/common.sh
source $DIR/../backporting/common.sh

PROJECTS_REGEX='s/.*projects\/\([0-9]\+\).*/\1/'
ACTS_YAML=".github/cilium-actions.yml"
ACTS_YAML=".github/maintainers-little-helper.yaml"
REMOTE="$(get_remote)"

usage() {
Expand Down