Skip to content

Commit 770cf6b

Browse files
authored
Merge pull request #1638 from olehermanse/deptool-fixes
More follow-ups related to deptool
2 parents 17e40ac + ad2e6f2 commit 770cf6b

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

.github/workflows/update-dep-tables.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ jobs:
3535
if: env.COMMIT_MADE == 'true'
3636
uses: cfengine/create-pull-request@v6
3737
with:
38-
title: Update dependency tables
39-
body: Automated dependency tables update using [the `update_dep_tables` workflow](https://github.com/cfengine/buildscripts/blob/master/.github/workflows/update-dep-tables.yml).
38+
title: Updated Markdown dependency tables
39+
body: Automated updates to the README.md Markdown dependency tables using [the `update_dep_tables` workflow](https://github.com/cfengine/buildscripts/blob/master/.github/workflows/update-dep-tables.yml).
4040
reviewers: |
4141
olehermanse
4242
larsewi

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@ Due to sheer diversity of the environments, build machine is expected to provide
5959
To access the build machine:
6060

6161
- SSH server
62-
- Bundled one on Unixes
63-
- FreeSSHd on Windows
62+
- Bundled one on Unixes
63+
- FreeSSHd on Windows
6464
- 'build' account with SSH key installed
6565

6666
To transfer files back and forth:
@@ -85,9 +85,9 @@ To build everything:
8585
To create packages:
8686

8787
- Native packaging manager
88-
- rpm-build on RPM-based systems
89-
- dpkg-dev, debhelper, fakeroot
90-
- WiX on Windows
88+
- rpm-build on RPM-based systems
89+
- dpkg-dev, debhelper, fakeroot
90+
- WiX on Windows
9191

9292
To build MySQL library (yeah!):
9393

scripts/deptool.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -457,7 +457,7 @@ def updated_deps_markdown_table(self, refs):
457457
def patch_readme(self, updated_readme):
458458
TARGET_README_PATH = "README.md"
459459
self.buildscripts_repo.put_file(TARGET_README_PATH, updated_readme)
460-
self.buildscripts_repo.commit("Update dependency tables")
460+
self.buildscripts_repo.commit("Updated Markdown dependency tables")
461461

462462
def write_deps_json(self, json_path, refs):
463463
deps_data, _ = self.deps_dict(refs)
@@ -661,7 +661,7 @@ def main():
661661
comparison_table = dr.comparison_md_table(args.refs, args.skip_unchanged)
662662
print(comparison_table)
663663
else:
664-
print("### Agent Dependencies\n")
664+
print("### Agent dependencies\n")
665665
print(updated_agent_table)
666666
print("\n### Enterprise Hub dependencies\n")
667667
print(updated_hub_table)

0 commit comments

Comments
 (0)