Skip to content

Commit

Permalink
docs: update actions and workflows documentation
Browse files Browse the repository at this point in the history
[skip ci]

Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Signed-off-by: Emilien Escalle <emilien.escalle@escemi.com>
  • Loading branch information
github-actions[bot] authored and neilime committed Apr 3, 2024
1 parent ff1e859 commit 5a079c3
Show file tree
Hide file tree
Showing 15 changed files with 45 additions and 18 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/generate-dependabot-config.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ on:
push:
branches:
- main

permissions:
contents: read

jobs:
main:
uses: hoverkraft-tech/ci-github-common/.github/workflows/generate-dependabot-config.yml@0.13.0
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/greetings.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,11 @@ on:
pull_request_target:
branches: [main]

permissions:
contents: read
issues: write
pull-requests: write

jobs:
greetings:
uses: hoverkraft-tech/ci-github-common/.github/workflows/greetings.yml@0.13.0
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/linter.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,11 @@ on:
pull_request:
branches: [main]

permissions:
contents: read
packages: read
statuses: write

jobs:
main:
uses: hoverkraft-tech/ci-github-common/.github/workflows/linter.yml@0.13.0
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/need-fix-to-issue.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,18 @@ on:
- main
workflow_dispatch:
inputs:
#checkov:skip=CKV_GHA_7: required
manual-commit-ref:
description: "The SHA of the commit to get the diff for"
required: true
manual-base-ref:
description: "By default, the commit entered above is compared to the one directly before it; to go back further, enter an earlier SHA here"
required: false

permissions:
contents: read
issues: write

jobs:
main:
uses: hoverkraft-tech/ci-github-common/.github/workflows/need-fix-to-issue.yml@0.13.0
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/semantic-pull-request.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,10 @@ on:
- edited
- synchronize

permissions:
contents: write
pull-requests: write

jobs:
main:
uses: hoverkraft-tech/ci-github-common/.github/workflows/semantic-pull-request.yml@0.13.0
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/stale.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ on:
schedule:
- cron: "30 1 * * *"

permissions:
issues: write
pull-requests: write

jobs:
main:
uses: hoverkraft-tech/ci-github-common/.github/workflows/stale.yml@0.13.0
Expand Down
4 changes: 2 additions & 2 deletions actions/checkout/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<!-- end title -->
<!-- start badges -->

<a href="https%3A%2F%2Fgit.luolix.top%2F%2Fci-github-common%2Factions%2Fcheckout%2Freleases%2Flatest"><img src="https://img.shields.io/github/v/release//ci-github-common/actions/checkout?display_name=tag&sort=semver&logo=github&style=flat-square" alt="Release%20by%20tag" /></a><a href="https%3A%2F%2Fgit.luolix.top%2F%2Fci-github-common%2Factions%2Fcheckout%2Freleases%2Flatest"><img src="https://img.shields.io/github/release-date//ci-github-common/actions/checkout?display_name=tag&sort=semver&logo=github&style=flat-square" alt="Release%20by%20date" /></a><img src="https://img.shields.io/github/last-commit//ci-github-common/actions/checkout?logo=github&style=flat-square" alt="Commit" /><a href="https%3A%2F%2Fgit.luolix.top%2F%2Fci-github-common%2Factions%2Fcheckout%2Fissues"><img src="https://img.shields.io/github/issues//ci-github-common/actions/checkout?logo=github&style=flat-square" alt="Open%20Issues" /></a><img src="https://img.shields.io/github/downloads//ci-github-common/actions/checkout/total?logo=github&style=flat-square" alt="Downloads" />
<a href="https%3A%2F%2Fgit.luolix.top%2Fhoverkraft-tech%2Fci-github-common%2Freleases%2Flatest"><img src="https://img.shields.io/github/v/release/hoverkraft-tech/ci-github-common?display_name=tag&sort=semver&logo=github&style=flat-square" alt="Release%20by%20tag" /></a><a href="https%3A%2F%2Fgit.luolix.top%2Fhoverkraft-tech%2Fci-github-common%2Freleases%2Flatest"><img src="https://img.shields.io/github/release-date/hoverkraft-tech/ci-github-common?display_name=tag&sort=semver&logo=github&style=flat-square" alt="Release%20by%20date" /></a><img src="https://img.shields.io/github/last-commit/hoverkraft-tech/ci-github-common?logo=github&style=flat-square" alt="Commit" /><a href="https%3A%2F%2Fgit.luolix.top%2Fhoverkraft-tech%2Fci-github-common%2Fissues"><img src="https://img.shields.io/github/issues/hoverkraft-tech/ci-github-common?logo=github&style=flat-square" alt="Open%20Issues" /></a><img src="https://img.shields.io/github/downloads/hoverkraft-tech/ci-github-common/total?logo=github&style=flat-square" alt="Downloads" />

<!-- end badges -->
<!-- start description -->
Expand All @@ -33,7 +33,7 @@ permissions:
<!-- start usage -->
```yaml
- uses: /ci-github-common/actions/checkout@0.12.1
- uses: hoverkraft-tech/ci-github-common@0.13.0
with:
# Description: Number of commits to fetch. 0 indicates all history for all
# branches and tags. See
Expand Down
4 changes: 2 additions & 2 deletions actions/create-and-merge-pull-request/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<!-- end title -->
<!-- start badges -->

<a href="https%3A%2F%2Fgit.luolix.top%2F%2Fci-github-common%2Factions%2Fcreate-and-merge-pull-request%2Freleases%2Flatest"><img src="https://img.shields.io/github/v/release//ci-github-common/actions/create-and-merge-pull-request?display_name=tag&sort=semver&logo=github&style=flat-square" alt="Release%20by%20tag" /></a><a href="https%3A%2F%2Fgit.luolix.top%2F%2Fci-github-common%2Factions%2Fcreate-and-merge-pull-request%2Freleases%2Flatest"><img src="https://img.shields.io/github/release-date//ci-github-common/actions/create-and-merge-pull-request?display_name=tag&sort=semver&logo=github&style=flat-square" alt="Release%20by%20date" /></a><img src="https://img.shields.io/github/last-commit//ci-github-common/actions/create-and-merge-pull-request?logo=github&style=flat-square" alt="Commit" /><a href="https%3A%2F%2Fgit.luolix.top%2F%2Fci-github-common%2Factions%2Fcreate-and-merge-pull-request%2Fissues"><img src="https://img.shields.io/github/issues//ci-github-common/actions/create-and-merge-pull-request?logo=github&style=flat-square" alt="Open%20Issues" /></a><img src="https://img.shields.io/github/downloads//ci-github-common/actions/create-and-merge-pull-request/total?logo=github&style=flat-square" alt="Downloads" />
<a href="https%3A%2F%2Fgit.luolix.top%2Fhoverkraft-tech%2Fci-github-common%2Freleases%2Flatest"><img src="https://img.shields.io/github/v/release/hoverkraft-tech/ci-github-common?display_name=tag&sort=semver&logo=github&style=flat-square" alt="Release%20by%20tag" /></a><a href="https%3A%2F%2Fgit.luolix.top%2Fhoverkraft-tech%2Fci-github-common%2Freleases%2Flatest"><img src="https://img.shields.io/github/release-date/hoverkraft-tech/ci-github-common?display_name=tag&sort=semver&logo=github&style=flat-square" alt="Release%20by%20date" /></a><img src="https://img.shields.io/github/last-commit/hoverkraft-tech/ci-github-common?logo=github&style=flat-square" alt="Commit" /><a href="https%3A%2F%2Fgit.luolix.top%2Fhoverkraft-tech%2Fci-github-common%2Fissues"><img src="https://img.shields.io/github/issues/hoverkraft-tech/ci-github-common?logo=github&style=flat-square" alt="Open%20Issues" /></a><img src="https://img.shields.io/github/downloads/hoverkraft-tech/ci-github-common/total?logo=github&style=flat-square" alt="Downloads" />

<!-- end badges -->
<!-- start description -->
Expand All @@ -27,7 +27,7 @@ Allow GitHub Actions to create and approve pull requests](https://docs.github.co
<!-- start usage -->

```yaml
- uses: /ci-github-common/actions/create-and-merge-pull-request@0.12.1
- uses: hoverkraft-tech/ci-github-common@0.13.0
with:
# Description: GitHub token for creating and merging pull request (permissions
# contents: write and pull-requests: write). See
Expand Down
4 changes: 2 additions & 2 deletions actions/create-or-update-comment/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<!-- end title -->
<!-- start badges -->

<a href="https%3A%2F%2Fgit.luolix.top%2F%2Fci-github-common%2Factions%2Fcreate-or-update-comment%2Freleases%2Flatest"><img src="https://img.shields.io/github/v/release//ci-github-common/actions/create-or-update-comment?display_name=tag&sort=semver&logo=github&style=flat-square" alt="Release%20by%20tag" /></a><a href="https%3A%2F%2Fgit.luolix.top%2F%2Fci-github-common%2Factions%2Fcreate-or-update-comment%2Freleases%2Flatest"><img src="https://img.shields.io/github/release-date//ci-github-common/actions/create-or-update-comment?display_name=tag&sort=semver&logo=github&style=flat-square" alt="Release%20by%20date" /></a><img src="https://img.shields.io/github/last-commit//ci-github-common/actions/create-or-update-comment?logo=github&style=flat-square" alt="Commit" /><a href="https%3A%2F%2Fgit.luolix.top%2F%2Fci-github-common%2Factions%2Fcreate-or-update-comment%2Fissues"><img src="https://img.shields.io/github/issues//ci-github-common/actions/create-or-update-comment?logo=github&style=flat-square" alt="Open%20Issues" /></a><img src="https://img.shields.io/github/downloads//ci-github-common/actions/create-or-update-comment/total?logo=github&style=flat-square" alt="Downloads" />
<a href="https%3A%2F%2Fgit.luolix.top%2Fhoverkraft-tech%2Fci-github-common%2Freleases%2Flatest"><img src="https://img.shields.io/github/v/release/hoverkraft-tech/ci-github-common?display_name=tag&sort=semver&logo=github&style=flat-square" alt="Release%20by%20tag" /></a><a href="https%3A%2F%2Fgit.luolix.top%2Fhoverkraft-tech%2Fci-github-common%2Freleases%2Flatest"><img src="https://img.shields.io/github/release-date/hoverkraft-tech/ci-github-common?display_name=tag&sort=semver&logo=github&style=flat-square" alt="Release%20by%20date" /></a><img src="https://img.shields.io/github/last-commit/hoverkraft-tech/ci-github-common?logo=github&style=flat-square" alt="Commit" /><a href="https%3A%2F%2Fgit.luolix.top%2Fhoverkraft-tech%2Fci-github-common%2Fissues"><img src="https://img.shields.io/github/issues/hoverkraft-tech/ci-github-common?logo=github&style=flat-square" alt="Open%20Issues" /></a><img src="https://img.shields.io/github/downloads/hoverkraft-tech/ci-github-common/total?logo=github&style=flat-square" alt="Downloads" />

<!-- end badges -->
<!-- start description -->
Expand All @@ -32,7 +32,7 @@ permissions:
<!-- start usage -->
```yaml
- uses: /ci-github-common/actions/create-or-update-comment@0.12.1
- uses: hoverkraft-tech/ci-github-common@0.13.0
with:
# Description: The comment title. Must be static and unique, will be used to
# retrieve the comment if exists already.
Expand Down
4 changes: 2 additions & 2 deletions actions/get-github-actions-bot-user/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<!-- end title -->
<!-- start badges -->

<a href="https%3A%2F%2Fgit.luolix.top%2F%2Fci-github-common%2Factions%2Fget-github-actions-bot-user%2Freleases%2Flatest"><img src="https://img.shields.io/github/v/release//ci-github-common/actions/get-github-actions-bot-user?display_name=tag&sort=semver&logo=github&style=flat-square" alt="Release%20by%20tag" /></a><a href="https%3A%2F%2Fgit.luolix.top%2F%2Fci-github-common%2Factions%2Fget-github-actions-bot-user%2Freleases%2Flatest"><img src="https://img.shields.io/github/release-date//ci-github-common/actions/get-github-actions-bot-user?display_name=tag&sort=semver&logo=github&style=flat-square" alt="Release%20by%20date" /></a><img src="https://img.shields.io/github/last-commit//ci-github-common/actions/get-github-actions-bot-user?logo=github&style=flat-square" alt="Commit" /><a href="https%3A%2F%2Fgit.luolix.top%2F%2Fci-github-common%2Factions%2Fget-github-actions-bot-user%2Fissues"><img src="https://img.shields.io/github/issues//ci-github-common/actions/get-github-actions-bot-user?logo=github&style=flat-square" alt="Open%20Issues" /></a><img src="https://img.shields.io/github/downloads//ci-github-common/actions/get-github-actions-bot-user/total?logo=github&style=flat-square" alt="Downloads" />
<a href="https%3A%2F%2Fgit.luolix.top%2Fhoverkraft-tech%2Fci-github-common%2Freleases%2Flatest"><img src="https://img.shields.io/github/v/release/hoverkraft-tech/ci-github-common?display_name=tag&sort=semver&logo=github&style=flat-square" alt="Release%20by%20tag" /></a><a href="https%3A%2F%2Fgit.luolix.top%2Fhoverkraft-tech%2Fci-github-common%2Freleases%2Flatest"><img src="https://img.shields.io/github/release-date/hoverkraft-tech/ci-github-common?display_name=tag&sort=semver&logo=github&style=flat-square" alt="Release%20by%20date" /></a><img src="https://img.shields.io/github/last-commit/hoverkraft-tech/ci-github-common?logo=github&style=flat-square" alt="Commit" /><a href="https%3A%2F%2Fgit.luolix.top%2Fhoverkraft-tech%2Fci-github-common%2Fissues"><img src="https://img.shields.io/github/issues/hoverkraft-tech/ci-github-common?logo=github&style=flat-square" alt="Open%20Issues" /></a><img src="https://img.shields.io/github/downloads/hoverkraft-tech/ci-github-common/total?logo=github&style=flat-square" alt="Downloads" />

<!-- end badges -->
<!-- start description -->
Expand All @@ -23,7 +23,7 @@ Action to get the GitHub Actions bot user informations. Usefull to commit, comme
<!-- start usage -->

```yaml
- uses: /ci-github-common/actions/get-github-actions-bot-user@0.12.1
- uses: hoverkraft-tech/ci-github-common@0.13.0
with:
```
Expand Down
4 changes: 2 additions & 2 deletions actions/get-issue-number/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<!-- end title -->
<!-- start badges -->

<a href="https%3A%2F%2Fgit.luolix.top%2F%2Fci-github-common%2Factions%2Fget-issue-number%2Freleases%2Flatest"><img src="https://img.shields.io/github/v/release//ci-github-common/actions/get-issue-number?display_name=tag&sort=semver&logo=github&style=flat-square" alt="Release%20by%20tag" /></a><a href="https%3A%2F%2Fgit.luolix.top%2F%2Fci-github-common%2Factions%2Fget-issue-number%2Freleases%2Flatest"><img src="https://img.shields.io/github/release-date//ci-github-common/actions/get-issue-number?display_name=tag&sort=semver&logo=github&style=flat-square" alt="Release%20by%20date" /></a><img src="https://img.shields.io/github/last-commit//ci-github-common/actions/get-issue-number?logo=github&style=flat-square" alt="Commit" /><a href="https%3A%2F%2Fgit.luolix.top%2F%2Fci-github-common%2Factions%2Fget-issue-number%2Fissues"><img src="https://img.shields.io/github/issues//ci-github-common/actions/get-issue-number?logo=github&style=flat-square" alt="Open%20Issues" /></a><img src="https://img.shields.io/github/downloads//ci-github-common/actions/get-issue-number/total?logo=github&style=flat-square" alt="Downloads" />
<a href="https%3A%2F%2Fgit.luolix.top%2Fhoverkraft-tech%2Fci-github-common%2Freleases%2Flatest"><img src="https://img.shields.io/github/v/release/hoverkraft-tech/ci-github-common?display_name=tag&sort=semver&logo=github&style=flat-square" alt="Release%20by%20tag" /></a><a href="https%3A%2F%2Fgit.luolix.top%2Fhoverkraft-tech%2Fci-github-common%2Freleases%2Flatest"><img src="https://img.shields.io/github/release-date/hoverkraft-tech/ci-github-common?display_name=tag&sort=semver&logo=github&style=flat-square" alt="Release%20by%20date" /></a><img src="https://img.shields.io/github/last-commit/hoverkraft-tech/ci-github-common?logo=github&style=flat-square" alt="Commit" /><a href="https%3A%2F%2Fgit.luolix.top%2Fhoverkraft-tech%2Fci-github-common%2Fissues"><img src="https://img.shields.io/github/issues/hoverkraft-tech/ci-github-common?logo=github&style=flat-square" alt="Open%20Issues" /></a><img src="https://img.shields.io/github/downloads/hoverkraft-tech/ci-github-common/total?logo=github&style=flat-square" alt="Downloads" />

<!-- end badges -->
<!-- start description -->
Expand All @@ -23,7 +23,7 @@ Action to get Pull request or issue number
<!-- start usage -->

```yaml
- uses: /ci-github-common/actions/get-issue-number@0.12.1
- uses: hoverkraft-tech/ci-github-common@0.13.0
with:
```
Expand Down
4 changes: 2 additions & 2 deletions actions/get-matrix-outputs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<!-- end title -->
<!-- start badges -->

<a href="https%3A%2F%2Fgit.luolix.top%2F%2Fci-github-common%2Factions%2Fget-matrix-outputs%2Freleases%2Flatest"><img src="https://img.shields.io/github/v/release//ci-github-common/actions/get-matrix-outputs?display_name=tag&sort=semver&logo=github&style=flat-square" alt="Release%20by%20tag" /></a><a href="https%3A%2F%2Fgit.luolix.top%2F%2Fci-github-common%2Factions%2Fget-matrix-outputs%2Freleases%2Flatest"><img src="https://img.shields.io/github/release-date//ci-github-common/actions/get-matrix-outputs?display_name=tag&sort=semver&logo=github&style=flat-square" alt="Release%20by%20date" /></a><img src="https://img.shields.io/github/last-commit//ci-github-common/actions/get-matrix-outputs?logo=github&style=flat-square" alt="Commit" /><a href="https%3A%2F%2Fgit.luolix.top%2F%2Fci-github-common%2Factions%2Fget-matrix-outputs%2Fissues"><img src="https://img.shields.io/github/issues//ci-github-common/actions/get-matrix-outputs?logo=github&style=flat-square" alt="Open%20Issues" /></a><img src="https://img.shields.io/github/downloads//ci-github-common/actions/get-matrix-outputs/total?logo=github&style=flat-square" alt="Downloads" />
<a href="https%3A%2F%2Fgit.luolix.top%2Fhoverkraft-tech%2Fci-github-common%2Freleases%2Flatest"><img src="https://img.shields.io/github/v/release/hoverkraft-tech/ci-github-common?display_name=tag&sort=semver&logo=github&style=flat-square" alt="Release%20by%20tag" /></a><a href="https%3A%2F%2Fgit.luolix.top%2Fhoverkraft-tech%2Fci-github-common%2Freleases%2Flatest"><img src="https://img.shields.io/github/release-date/hoverkraft-tech/ci-github-common?display_name=tag&sort=semver&logo=github&style=flat-square" alt="Release%20by%20date" /></a><img src="https://img.shields.io/github/last-commit/hoverkraft-tech/ci-github-common?logo=github&style=flat-square" alt="Commit" /><a href="https%3A%2F%2Fgit.luolix.top%2Fhoverkraft-tech%2Fci-github-common%2Fissues"><img src="https://img.shields.io/github/issues/hoverkraft-tech/ci-github-common?logo=github&style=flat-square" alt="Open%20Issues" /></a><img src="https://img.shields.io/github/downloads/hoverkraft-tech/ci-github-common/total?logo=github&style=flat-square" alt="Downloads" />

<!-- end badges -->
<!-- start description -->
Expand All @@ -23,7 +23,7 @@ Download matrix ouputs from artifacts, because GitHub action does not handle job
<!-- start usage -->

```yaml
- uses: /ci-github-common/actions/get-matrix-outputs@0.12.1
- uses: hoverkraft-tech/ci-github-common@0.13.0
with:
# Description: The name of the artifact to download.
#
Expand Down
4 changes: 2 additions & 2 deletions actions/repository-owner-is-organization/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<!-- end title -->
<!-- start badges -->

<a href="https%3A%2F%2Fgit.luolix.top%2F%2Fci-github-common%2Factions%2Frepository-owner-is-organization%2Freleases%2Flatest"><img src="https://img.shields.io/github/v/release//ci-github-common/actions/repository-owner-is-organization?display_name=tag&sort=semver&logo=github&style=flat-square" alt="Release%20by%20tag" /></a><a href="https%3A%2F%2Fgit.luolix.top%2F%2Fci-github-common%2Factions%2Frepository-owner-is-organization%2Freleases%2Flatest"><img src="https://img.shields.io/github/release-date//ci-github-common/actions/repository-owner-is-organization?display_name=tag&sort=semver&logo=github&style=flat-square" alt="Release%20by%20date" /></a><img src="https://img.shields.io/github/last-commit//ci-github-common/actions/repository-owner-is-organization?logo=github&style=flat-square" alt="Commit" /><a href="https%3A%2F%2Fgit.luolix.top%2F%2Fci-github-common%2Factions%2Frepository-owner-is-organization%2Fissues"><img src="https://img.shields.io/github/issues//ci-github-common/actions/repository-owner-is-organization?logo=github&style=flat-square" alt="Open%20Issues" /></a><img src="https://img.shields.io/github/downloads//ci-github-common/actions/repository-owner-is-organization/total?logo=github&style=flat-square" alt="Downloads" />
<a href="https%3A%2F%2Fgit.luolix.top%2Fhoverkraft-tech%2Fci-github-common%2Freleases%2Flatest"><img src="https://img.shields.io/github/v/release/hoverkraft-tech/ci-github-common?display_name=tag&sort=semver&logo=github&style=flat-square" alt="Release%20by%20tag" /></a><a href="https%3A%2F%2Fgit.luolix.top%2Fhoverkraft-tech%2Fci-github-common%2Freleases%2Flatest"><img src="https://img.shields.io/github/release-date/hoverkraft-tech/ci-github-common?display_name=tag&sort=semver&logo=github&style=flat-square" alt="Release%20by%20date" /></a><img src="https://img.shields.io/github/last-commit/hoverkraft-tech/ci-github-common?logo=github&style=flat-square" alt="Commit" /><a href="https%3A%2F%2Fgit.luolix.top%2Fhoverkraft-tech%2Fci-github-common%2Fissues"><img src="https://img.shields.io/github/issues/hoverkraft-tech/ci-github-common?logo=github&style=flat-square" alt="Open%20Issues" /></a><img src="https://img.shields.io/github/downloads/hoverkraft-tech/ci-github-common/total?logo=github&style=flat-square" alt="Downloads" />

<!-- end badges -->
<!-- start description -->
Expand All @@ -23,7 +23,7 @@ Action to check if the repository owner is an organization.
<!-- start usage -->

```yaml
- uses: /ci-github-common/actions/repository-owner-is-organization@0.12.1
- uses: hoverkraft-tech/ci-github-common@0.13.0
with:
# Description: GitHub token for fetching users API.
#
Expand Down
Loading

0 comments on commit 5a079c3

Please sign in to comment.