diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 53bd45d..4673243 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -39,3 +39,6 @@ jobs: tag_name: ${{ steps.changelog.outputs.tag }} release_name: ${{ steps.changelog.outputs.tag }} body: ${{ steps.changelog.outputs.changelog }} + + - name: Latest tag + uses: EndBug/latest-tag@v1.4.0 diff --git a/README.md b/README.md index 4966541..f5d0fce 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,9 @@ -# mawesome +# My Awesome list This action query the github api to get starred list of the user and then generates a list ordered by languages. +You can see an example of the output at my own [simonecorsi/awesome](https://github.com/simonecorsi/awesome) + ## Setup To use this action you have to create your own repository (eg: `yourname/awesome`), then create a new empty action in it and then use the [example workflow](#example-workflow) below as a starting point. @@ -34,7 +36,7 @@ jobs: steps: - uses: actions/checkout@v2 - name: Awesome generator - uses: simonecorsi/mawesome@main + uses: simonecorsi/mawesome@lastest with: api-token: ${{ secrets.API_TOKEN }} github-token: ${{ secrets.GITHUB_TOKEN }}