Skip to content

Releases: maael/template-repository-usage-action

v1.2.0 - Optional heading_level input

18 Apr 15:34
Compare
Choose a tag to compare

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

03 Jan 14:31
Compare
Choose a tag to compare

This release changes two things:

  1. We use repositoryOwner from the GitHub API to get repositories now, instead of organization - meaning this action now works for user owned templates too.
  2. We used to order by PUSHED_AT, causing the order we listed repositories using the template to change over time, now we use CREATED_AT to be more stable.

1.0.0 - First stable release

13 Oct 07:34
Compare
Choose a tag to compare

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

10 Sep 14:35
Compare
Choose a tag to compare
Pre-release

This is an initial release to try out and see what it outputs.