Releases: maael/template-repository-usage-action
Releases · maael/template-repository-usage-action
v1.2.0 - Optional heading_level input
New Features
- You can now use the optional
heading_level
input to control the level the list will be added to the README at, thanks to @rlespinasse
Chores
- Added some basic tests for core functionality
1.1.0 - Support users, makes ordering more stable
This release changes two things:
- We use
repositoryOwner
from the GitHub API to get repositories now, instead oforganization
- meaning this action now works for user owned templates too. - We used to order by
PUSHED_AT
, causing the order we listed repositories using the template to change over time, now we useCREATED_AT
to be more stable.
1.0.0 - First stable release
You can run the action nightly with a workflow like this:
on:
schedule:
# * is a special character in YAML so you have to quote this string
- cron: '0 0 * * *'
jobs:
get_repositories_list:
- name: Template Repository Usage Action
uses: maael/[email protected]
with:
token: ${{ secrets.GH_TOKEN }}
Initial release
This is an initial release to try out and see what it outputs.