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
1 change: 1 addition & 0 deletions .github/workflows/gwy-badges.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@ env:
on:
push:
branches:
- main
- master

workflow_dispatch:
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [1.0.0-beta.2] - XXXX-XX-XX

### Added

- Badges Generation Workflow: added trigger on release
pushes event to additional "master" branch `main`

### Fixed

- Badges Generation Workflow: Fixed bug in "Issues" count badge,
Expand Down
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -553,6 +553,19 @@ them in your documentation, getting updated automatically in your next
release. You can also schedule a daily job to run the workflow, updating
automatically all your count badges like `Downloads` and `Stars`.

By default, this workflow gets triggered automatically on push events to
popular "master" branches `master` and `main`. If you happen to have a
different one, you can customize your releases master branch name by editing
the following block inside the workflow file:

```
on:
push:
branches:
- main
- master
```

Configure the badges target branch, the target directory within it and which
of the available GitHub domains you want the urls to be generated with editing
the variables at the top of the workflow `.github/workflows/gwy-badges.yml`,
Expand Down