Skip to content

Releases: cicirello/count-action-users

count-action-users, v1.0.7

05 Oct 19:13
Compare
Choose a tag to compare

[1.0.7] - 2023-10-05

This release contains no functional changes, and is strictly to update the version of Python used by the action.

CI/CD

  • Bump Python to 3.12 in CI/CD workflows when running unit tests.

Dependencies

  • Bump cicirello/pyaction from 4.10.0 to 4.25.0, including upgrading Python within the Docker container to 3.12.

count-action-users, v1.0.6

20 Oct 17:25
d5bbb5a
Compare
Choose a tag to compare

[1.0.6] - 2022-10-20

Fixed

  • Replaced the usage of GitHub Action's deprecated set-output workflow command with the new $GITHUB_OUTPUT
    environment file.
  • Disabled pycache to protect against potential future bug. Currently no imports so no pycache created, but if future
    versions import local py modules, a pycache would be created during run in repo. Disabled creation of pycache now to avoid.

Dependencies

  • Bump cicirello/pyaction from 4.2.0 to 4.10.0, including upgrading Python within the Docker container to 3.10.7

count-action-users, v1.0.5

04 Mar 19:47
80d57dd
Compare
Choose a tag to compare

[1.0.5] - 2022-03-04

Changed

  • Bumped python to 3.10.
  • Bumped base Docker image from pyaction:4.0.0 to pyaction:4.2.0.

count-action-users, v1.0.4

13 Dec 21:15
3b8b80e
Compare
Choose a tag to compare

[1.0.4] - 2021-12-13

Changed

  • The base Docker image is now set to a specific version tag of pyaction,
    specifically 4.0.0.

Fixed

  • Query results should never be 0 since the workflow running the action is
    referencing the name of the workflow whose users are to be counted. GitHub
    code search API periodically returns 0 results, typically correcting itself next
    run. This patch prevents the badge JSON file from being written if result is 0.

count-action-users, v1.0.3

30 Sep 18:42
6d35b22
Compare
Choose a tag to compare

[1.0.3] - 2021-09-30

Fixed

  • Changed the default badge color to the shade of blue that is commonly used
    by Shields' badges for those badges that are informational. Our previous use
    of green was inconsistent with the common use of green for a passing status.
    Badges with counts of users is not a status that can be passed or failed. It
    is strictly informational, and potentially useful to maintainers of actions
    to know size of user-base and thus scale of the effects of potential changes.
    Users can still override the color to any that they desire with the color input.

count-action-users, v1.0.2

19 Aug 18:07
c85a8a6
Compare
Choose a tag to compare

[1.0.2] - 2021-08-19

Fixed

  • Increased default query-delay to 65 seconds to minimize
    potential of hitting secondary rate limits for the use-case of
    monitoring multiple actions.
  • Increased minimum query-delay to 33 seconds to minimize
    potential of hitting secondary rate limits for the use-case of
    monitoring multiple actions.
  • Added cache directive to queries ("--cache 1h").

count-action-users, v1.0.1

05 Aug 17:44
2e0a4c6
Compare
Choose a tag to compare

[1.0.1] - 2021-08-05

Fixed

  • Significantly decreased chance of hitting code search API rate limits,
    or secondary limits, on cases where the user is using the action to
    monitor multiple actions, by introducing a time delay between the queries
    for each subsequent action. Length of delay is controlled by a new optional
    action input, query-delay.
  • Updated docs to clarify what this counts (number of workflows using the action).

count-action-users, v1.0.0

04 Aug 18:41
9c47fa7
Compare
Choose a tag to compare

[1.0.0] - 2021-08-04

Added

  • Initial release: Monitors one or more GitHub Actions, reporting user counts as a Shields endpoint to enable generating a status badge.