v5.2.0 #75
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: GitHub Tag Update | |
on: | |
release: | |
types: [ published, edited ] | |
permissions: | |
contents: read | |
jobs: | |
actions-tagger: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- name: Repository checkout | |
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4 | |
# never use pinning to SHA, it breaks the release of this action | |
- name: Update tag | |
uses: Actions-R-Us/actions-tagger@v2 | |
with: | |
publish_latest_tag: false | |
token: ${{ secrets.GITHUB_TOKEN }} |